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

ljacqu / wordeval / 14558242496

20 Apr 2025 09:39AM UTC coverage: 53.745%. First build
14558242496

push

github

ljacqu
Change WordEvalMain to SpringBootApp, convert dict & lang data to constants

286 of 596 branches covered (47.99%)

124 of 134 new or added lines in 4 files covered. (92.54%)

739 of 1375 relevant lines covered (53.75%)

3.04 hits per line

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

66.67
/src/main/java/ch/jalu/wordeval/appdata/AppData.java
1
package ch.jalu.wordeval.appdata;
2

3
import ch.jalu.wordeval.dictionary.Dictionary;
4
import org.springframework.stereotype.Component;
5

6
import java.util.List;
7

8
/**
9
 * Application data holder.
10
 */
11
@Component
12
public class AppData {
3✔
13

14
  public Dictionary getDictionary(String code) {
15
    return DictionaryData.getOrThrow(code);
3✔
16
  }
17

18
  public List<Dictionary> getAllDictionaries() {
NEW
19
    return DictionaryData.streamThroughAll().toList();
×
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

© 2025 Coveralls, Inc