1 | void testNestedA() {↵ | | 1 | void testXmlns() {↵
|
2 | expectLogContaining("nested.a", "add A called");↵ | | 2 | expectLog("xmlns", "MyTask called");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void testNestedB() {↵ | | 4 | public void testXmlnsFile() {↵
|
5 | expectLogContaining("nested.b", "add B called");↵ | | 5 | expectLog("xmlns.file", "MyTask called");↵
|
6 | }↵ | | 6 | }↵
|
|
7 | public void testNestedC() {↵ | | 7 | public void testCore() {↵
|
8 | expectLogContaining("nested.c", "add C called");↵ | | 8 | expectLog("core", "MyTask called");↵
|
9 | }↵ | | 9 | }↵
|
|
10 | public void testNestedAB() {↵ | | 10 | public void testExcluded() {↵
|
11 | expectBuildExceptionContaining(↵ | | 11 | expectBuildExceptionContaining(↵
|
12 | "nested.ab", "Should have got ambiguous", "ambiguous↵ | | 12 | "excluded", "excluded uri",↵
|
13 | ");↵ | | 13 | "Attempt to use a reserved URI ant:notallowed");↵
|
14 | | | 14 |
|