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

ljacqu / wordeval / 14540642399

18 Apr 2025 07:26PM UTC coverage: 51.4% (-0.04%) from 51.439%
14540642399

push

github

ljacqu
Export evaluations alphabetically

239 of 546 branches covered (43.77%)

0 of 9 new or added lines in 3 files covered. (0.0%)

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

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
        });
×
18
    System.out.println();
×
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