1 | void testCore() {↵ | | 1 | void testNestedC() {↵
|
2 | expectLog("core", "MyTask called");↵ | | 2 | expectLogContaining("nested.c", "add C called");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void testExcluded() {↵ | | 4 | public void testNestedAB() {↵
|
5 | expectBuildExceptionContaining(↵ | | 5 | expectBuildExceptionContaining(↵
|
6 | "excluded", "excluded uri",↵ | | 6 | "↵
|
7 | "Attempt to use a reserved URI ant:notallowed");↵ | | 7 | nested.ab", "Should have got ambiguous", "ambiguous");↵
|
8 | }↵ | | 8 | }↵
|
|
9 | public void testOther() {↵ | | 9 | public void testConditionType() {↵
|
10 | expectLog("other", "a message");↵ | | 10 | expectLogContaining("condition.type", "beforeafter");↵
|
11 | }↵ | | 11 | }↵
|
|
12 | public void testNsAttributes() {↵ | | 12 | public void testConditionTask() {↵
|
13 | expectLog("ns.attributes", "hello world");↵ | | 13 | expectLogContaining("condition.task", "My Condition execution");↵
|
14 | | | 14 |
|