1 | void testPathelementPath() throws Exception {↵ | | 1 | void testDirsetPath() throws Exception {↵
|
2 | executeTarget("pathelementPath");↵ | | 2 | executeTarget("dirsetPath");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | // PR 38370↵ | | 4 | // PR 38370↵
|
5 | public void testPathelementLocationPath() throws Exception {↵ | | 5 | public void testDirsetPathWithoutPackagenames() throws Exception {↵
|
6 | try {↵ | | 6 | try {↵
|
7 | executeTarget("pathelementLocationPath");↵ | | 7 | executeTarget("dirsetPathWithoutPackagenames");↵
|
8 | } catch (BuildException e) {↵ | | 8 | } catch (BuildException e) {↵
|
9 | fail("A path can contain pathelements pointing to a file: " + e);↵ | | 9 | fail("Contents of path should be picked up without specifying package names: " + e);↵
|
10 | }↵ | | 10 | }↵
|
11 | }↵ | | 11 | }↵
|
|
12 | // PR 38370↵ | | 12 | // PR 38370↵
|
13 | public void testNestedSource() throws Exception {↵ | | 13 | public void testNestedDirsetPath() throws Exception {↵
|
14 | executeTarget("nestedSource");↵ | | 14 | executeTarget("nestedDirsetPath");↵
|
15 | | | 15 |
|