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