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

ljacqu / FileDuplicateFinder / 13977395174

20 Mar 2025 07:07PM UTC coverage: 23.055% (-0.7%) from 23.77%
13977395174

push

github

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

# Conflicts:
#	pom.xml

111 of 610 branches covered (18.2%)

Branch coverage included in aggregate %.

22 of 225 new or added lines in 15 files covered. (9.78%)

13 existing lines in 7 files now uncovered.

378 of 1511 relevant lines covered (25.02%)

1.28 hits per line

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

0.0
/src/main/java/ch/jalu/fileduplicatefinder/output/TaskWriterReader.java
1
package ch.jalu.fileduplicatefinder.output;
2

3
import static ch.jalu.fileduplicatefinder.output.RootWriterReader.ANSI_BLUE;
4
import static ch.jalu.fileduplicatefinder.output.RootWriterReader.ANSI_RESET;
5

6
public class TaskWriterReader implements WriterReader {
7

8
    private final RootWriterReader writerReader;
9
    private final String prefix;
10

NEW
11
    TaskWriterReader(RootWriterReader writerReader, String context) {
×
NEW
12
        this.writerReader = writerReader;
×
NEW
13
        this.prefix = ANSI_BLUE + context + "> " + ANSI_RESET;
×
NEW
14
    }
×
15

16
    @Override
17
    public void printNewLine() {
NEW
18
        writerReader.printNewLine();
×
NEW
19
    }
×
20

21
    @Override
22
    public void printLn(String text) {
NEW
23
        writerReader.printLn(prefix + text);
×
NEW
24
    }
×
25

26
    @Override
27
    public void print(String text) {
NEW
28
        writerReader.print(prefix + text);
×
NEW
29
    }
×
30

31
    public void printWithoutPrefix(String text) {
NEW
32
        writerReader.print(text);
×
NEW
33
    }
×
34

35
    @Override
36
    public void printError(String text) {
NEW
37
        writerReader.printError(prefix + text);
×
NEW
38
    }
×
39

40
    @Override
41
    public String getNextLine() {
NEW
42
        return writerReader.getNextLine();
×
43
    }
44
}
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