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