1 | void test23() {↵ | | 1 | void test16() {↵
|
2 | executeTarget("test23");↵ | | 2 | executeTarget("test16");↵
|
3 | assertEquals("true", project.getProperty("test"));↵ | | 3 | assertEquals("true", project.getProperty("test"));↵
|
4 | }↵ | | 4 | }↵
|
|
5 | // Class is found in specified classpath↵ | | 5 | // Specified dir is "../taskdefs" -> should exist since it's the↵
|
| | | 6 | // location of the buildfile used...↵
|
6 | public void test24() {↵ | | 7 | public void test17() {↵
|
7 | executeTarget("test24");↵ | | 8 | executeTarget("test17");↵
|
8 | assertEquals("true", project.getProperty("test"));↵ | | 9 | assertEquals("true", project.getProperty("test"));↵
|
9 | }↵ | | 10 | }↵
|
|
10 | // File is not found in specified filepath↵ | | 11 | // Specified dir is "../this_dir_should_never_exist" -> null↵
|
11 | public void testSearchInPathNotThere() {↵ | | 12 | public void test18() {↵
|
12 | executeTarget("searchInPathNotThere");↵ | | 13 | executeTarget("test18");↵
|
13 | assertNull(project.getProperty("test"));↵ | | 14 | assertNull(project.getProperty("test"));↵
|
14 | | | 15 |
|