1 | void test15() {↵ | | 1 | void test20() {↵
|
2 | executeTarget("test15");↵ | | 2 | executeTarget("test20");↵
|
3 | assertNull(project.getProperty("test"));↵ | | 3 | assertNull(project.getProperty("test"));↵
|
4 | }↵ | | 4 | }↵
|
|
5 | // Specified dir is "" -> this is the current directory and should↵ | | 5 | // Core class that exists in system classpath is i↵
|
6 | // always exist↵ | | 6 | gnored, but found in specified classpath↵
|
7 | public void test16() {↵ | | 7 | public void test21() {↵
|
8 | executeTarget("test16");↵ | | 8 | executeTarget("test21");↵
|
9 | assertEquals("true", project.getProperty("test"));↵ | | 9 | assertEquals("true", project.getProperty("test"));↵
|
10 | }↵ | | 10 | }↵
|
|
11 | // Specified dir is "../taskdefs" -> should exist since it's the↵ | | 11 | // ↵
|
12 | // location of the buildfile used...↵ | | 12 | Core class that exists in system classpath is not ignored with ignoresystemclass="false"↵
|
13 | public void test17() {↵ | | 13 | public void test22() {↵
|
14 | executeTarget("test17");↵ | | 14 | executeTarget("test22");↵
|
15 | assertEquals("true", project.getProperty("test"));↵ | | 15 | assertEquals("true", project.getProperty("test"));↵
|
16 | | | 16 |
|