• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ljacqu / wordeval / 14540892325

18 Apr 2025 07:50PM UTC coverage: 51.4% (-12.1%) from 63.456%
14540892325

push

github

ljacqu
Merge remote-tracking branch 'origin/master' into dependencies

239 of 546 branches covered (43.77%)

93 of 383 new or added lines in 27 files covered. (24.28%)

5 existing lines in 4 files now uncovered.

679 of 1321 relevant lines covered (51.4%)

3.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/ch/jalu/wordeval/evaluators/export/ExportService.java
1
package ch.jalu.wordeval.evaluators.export;
2

3
import ch.jalu.wordeval.evaluators.Evaluator;
4
import ch.jalu.wordeval.language.Language;
5

6
import java.util.Comparator;
7
import java.util.stream.Stream;
8

NEW
9
public class ExportService {
×
10

11
  public void export(Language language, Stream<Evaluator> evaluators) {
NEW
12
    System.out.println(language.getName());
×
NEW
13
    evaluators
×
NEW
14
        .sorted(Comparator.comparing(Evaluator::getId))
×
NEW
15
        .forEach(evaluator -> {
×
NEW
16
          System.out.println(evaluator.getId() + " - " + evaluator.getTopResults(10, 20));
×
NEW
17
        });
×
NEW
18
    System.out.println();
×
NEW
19
  }
×
20
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc