Skip to content

Package: TestConstants

TestConstants

nameinstructionbranchcomplexitylinemethod
static {...}
M: 0 C: 4
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%

Coverage

1: package basic;
2:
3: /**
4: * This class represents the constants of the scanner.
5: *
6: * @author HFW410
7: *
8: */
9:
10: public final class TestConstants {
11:         /**
12:          * The constructor. No side-effects.
13:          */
14:         private TestConstants() {
15:
16:         }
17:
18:         /**
19:          * The size of the buffer.
20:          */
21:         public static final Integer BUFFER = 50;
22:         /**
23:          * The String for a failed scanner exception.
24:          */
25:         public static final String SCANNEREXCEPTIONFAIL =
26:                         "Es wurde eine ScannerException erwartet, aber nicht ausgeloest";
27:
28: }