• 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/result/WordGroup.java
1
package ch.jalu.wordeval.evaluators.result;
2

3
import ch.jalu.wordeval.dictionary.Word;
4
import lombok.Getter;
5
import lombok.RequiredArgsConstructor;
6

7
import java.util.Set;
8

9
import static com.google.common.collect.Sets.newHashSet;
10

11
@Getter
12
@RequiredArgsConstructor
13
public class WordGroup implements EvaluationResult {
14

15
  private final Set<Word> words;
16

17
  public WordGroup(Word... words) {
UNCOV
18
    this(newHashSet(words));
×
UNCOV
19
  }
×
20

21
}
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

© 2026 Coveralls, Inc