Skip to contentPackage: TestConstants
TestConstants
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: }