1 | void testNoAppend() throws IOException {↵ | | |
|
2 | executeTarget("noappend");↵ | | |
|
3 | assertTrue(FILE_UTILS↵ | | |
|
4 | .contentEquals(project.resolveFile(REC_IN↵ | | |
|
5 | + "rectest1.result"),↵ | | |
|
6 | project.resolveFile(REC_DIR↵ | | |
|
7 | + "rectest1.log"), true));↵ | | |
|
8 | }↵ | | |
|
|
9 | public void testAppend() throws IOException {↵ | | 1 | void testAppend() throws IOException {↵
|
10 | executeTarget("append");↵ | | 2 | executeTarget("append");↵
|
11 | assertTrue(FILE_UTILS↵ | | 3 | assertTrue(FILE_UTILS↵
|
12 | .contentEquals(project.resolveFile(REC_IN↵ | | 4 | .contentEquals(project.resolveFile(REC_IN↵
|
13 | + "rectest2.result"),↵ | | 5 | + "rectest2.result"),↵
|
14 | project.resolveFile(REC_DIR↵ | | 6 | project.resolveFile(REC_DIR↵
|
15 | + "rectest2.log"), true));↵ | | 7 | + "rectest2.log"), true));↵
|
16 | }↵ | | 8 | }↵
|
|
17 | public void testRestart() throws IOException {↵ | | 9 | public void testRestart() throws IOException {↵
|
18 | executeTarget("restart");↵ | | 10 | executeTarget("restart");↵
|
19 | assertTrue(FILE_UTILS↵ | | 11 | assertTrue(FILE_UTILS↵
|
20 | .contentEquals(project.resolveFile(REC_IN↵ | | 12 | .contentEquals(project.resolveFile(REC_IN↵
|
21 | + "rectest3.result"),↵ | | 13 | + "rectest3.result"),↵
|
22 | project.resolveFile(REC_DIR↵ | | 14 | project.resolveFile(REC_DIR↵
|
23 | + "rectest3.log"), true));↵ | | 15 | + "rectest3.log"), true));↵
|
24 | | | 16 | }↵
|
|
| | | 17 | public void testDeleteRestart() throws IOException {↵
|
| | | 18 | executeTarget("deleterestart");↵
|
| | | 19 | assertTrue(FILE_UTILS↵
|
| | | 20 | .contentEquals(project.resolveFile(REC_IN↵
|
| | | 21 | + "rectest4.result"),↵
|
| | | 22 | project.resolveFile(REC_DIR↵
|
| | | 23 | + "rectest4.log"), true));↵
|
| | | 24 |
|