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

ljacqu / wordeval / 14560448446

20 Apr 2025 02:30PM UTC coverage: 55.102% (+1.4%) from 53.745%
14560448446

push

github

ljacqu
Springify processing of evaluators

291 of 596 branches covered (48.83%)

51 of 63 new or added lines in 8 files covered. (80.95%)

57 existing lines in 6 files now uncovered.

756 of 1372 relevant lines covered (55.1%)

3.13 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
import org.springframework.stereotype.Service;
6

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

10
@Service
UNCOV
11
public class ExportService {
×
12

13
  public void export(Language language, Stream<Evaluator> evaluators) {
14
    System.out.println(language.getName());
×
15
    evaluators
×
16
        .sorted(Comparator.comparing(Evaluator::getId))
×
17
        .forEach(evaluator -> {
×
18
          System.out.println(evaluator.getId() + " - " + evaluator.getTopResults(10, 20));
×
19
        });
×
20
    System.out.println();
×
21
  }
×
22
}
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