1 | void testElementOrder() {↵ | | 1 | void testNestedA() {↵
|
2 | expectLog("element.order", "Line 1Line 2");↵ | | 2 | expectLogContaining("nested.a", "add A called");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void testElementOrder2() {↵ | | 4 | public void testNestedB() {↵
|
5 | expectLog("element.order2", "Line 1Line 2Line 3");↵ | | 5 | expectLogContaining("nested.b", "add B called");↵
|
6 | }↵ | | 6 | }↵
|
|
7 | public void testAntTypeTest() {↵ | | 7 | public void testNestedC() {↵
|
8 | expectLog("antTypeTest", "");↵ | | 8 | expectLogContaining("nested.c", "add C called");↵
|
9 | }↵ | | 9 | }↵
|
|
10 | public void testCorrectTaskNameBadAttr() {↵ | | 10 | public void testNestedAB() {↵
|
11 | expectBuildExceptionContaining(↵ | | 11 | expectBuildExceptionContaining(↵
|
12 | "correct_taskname_badattr", "attribute message", "javac doesn't support the");↵ | | 12 | "nested.ab", "Should have got ambiguous", "ambiguous");↵
|
13 | | | 13 |
|