1 | void test4() {↵ | | 1 | void test2() {↵
|
2 | expectBuildException("test4", "src invalid");↵ | | 2 | expectLog("test2", "OUTPUT OF ECHO");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void test5() {↵ | | 4 | public void test3() {↵
|
5 | expectBuildException("test5", "dest invalid (or no http-server on local machine)↵ | | 5 | expectLog("test3", "\n"+↵
|
| | | 6 | " This \n"+↵
|
| | | 7 | " is\n"+↵
|
| | | 8 | " a \n"+↵
|
| | | 9 | " multiline\n"+↵
|
| | | 10 | " message\n"+↵
|
6 | ");↵ | | 11 | " ");↵
|
7 | }↵ | | 12 | }↵
|
|
8 | public void test6() {↵ | | 13 | public void testFile() throws Exception {↵
|
9 | executeTarget("test6");↵ | | 14 | executeTarget("testFile");↵
|
10 | }↵ | | 15 | }↵
|
|
11 | public void testUseTimestamp() {↵ | | 16 | public void testAppend() throws Exception {↵
|
12 | executeTarget("testUseTimestamp");↵ | | 17 | executeTarget("testAppend");↵
|
13 | }↵ | | 18 | }↵
|
|
14 | public void testUseTomorrow() {↵ | | 19 | public void testEmptyEncoding() throws Exception {↵
|
15 | executeTarget("testUseTomorrow");↵ | | 20 | executeTarget("testEmptyEncoding");↵
|
16 | } | | 21 | }
|