1 | void testXmlnsFile() {↵ | | 1 | void testConditionTask() {↵
|
2 | expectLog("xmlns.file", "MyTask called");↵ | | 2 | expectLogContaining("condition.task", "My Condition execution");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void testCore() {↵ | | 4 | public void testConditionConditionType() {↵
|
5 | expectLog("core", "MyTask called");↵ | | 5 | expectLogContaining("condition.condition.type", "My Condition eval");↵
|
6 | }↵ | | 6 | }↵
|
|
7 | public void testExcluded() {↵ | | 7 | public void testConditionConditionTask() {↵
|
8 | expectBuildExceptionContaining(↵ | | 8 | expectBuildExceptionContaining(↵
|
9 | "excluded", "excluded uri",↵ | | 9 | "↵
|
10 | "Attempt to use a reserved URI ant:notallow↵ | | 10 | condition.condition.task", "task masking condition",↵
|
11 | ed");↵ | | 11 | "doesn't support the nested");↵
|
12 | | | 12 |
|