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