1 | void testNoTrimStringCondition() {↵ | | 1 | void testPass() {↵
|
2 | executeTarget("testNoTrimStringCondition");↵ | | 2 | executeTarget("testPass");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void testStringFile() {↵ | | 4 | public void testFail() {↵
|
5 | expectBuildExceptionContaining("testStringFile",↵ | | 5 | expectBuildExceptionContaining("testFail",↵
|
6 | "should fail", "incompatible");↵ | | 6 | "must fail", "${foo}=bar");↵
|
7 | }↵ | | 7 | }↵
|
|
8 | public void testTrimFile() {↵ | | 8 | public void testEmpty() {↵
|
9 | expectBuildExceptionContaining("testTrimFile",↵ | | 9 | expectBuildExceptionContaining("test↵
|
10 | "should fail", "string length function only");↵ | | 10 | Empty", "must fail", "No nested XML specified");↵
|
11 | | | 11 |
|