1 | void testParentLevel2TooDeep() {↵ | | 1 | void testBadNoClassPath() {↵
|
2 | expectBuildExceptionContaining("test-parent-level2-too-deep", "nopath",↵ | | 2 | expectBuildExceptionContaining("test-bad-no-classpath", "no-classpath",↵
|
3 | "No suitable relative path from ");↵ | | 3 | "Missing nested <classpath>!");↵
|
4 | assertPropertyUnset("jar.classpath");↵ | | 4 | assertPropertyUnset("jar.classpath");↵
|
5 | }↵ | | 5 | }↵
|
|
6 | public void testPseudoTahoeRefid() {↵ | | 6 | public void testParentLevel1() {↵
|
7 | executeTarget("test-pseudo-tahoe-refid");↵ | | 7 | executeTarget("test-parent-level1");↵
|
|
8 | assertPropertyEquals("jar.classpath", "classes/dsp-core/ " +↵ | | 8 | assertPropertyEquals("jar.classpath", "dsp-core/ " +↵
|
9 | "classes/dsp-pres/ " +↵ | | 9 | "dsp-pres/ " +↵
|
10 | "classes/dsp-void/ " +↵ | | 10 | "dsp-void/ " +↵
|
11 | "generated/dsp-core/ " +↵ | | 11 | "../generated/dsp-core/ " +↵
|
12 | "↵ | | 12 | "../generated/dsp-pres/ " +↵
|
| | | 13 | "../generated/dsp-void/ " +↵
|
13 | resources/dsp-core/ " +↵ | | 14 | "../resources/dsp-core/ " +↵
|
14 | "resources/dsp-pres/↵ | | 15 | "../resources/dsp-pres/ " +↵
|
15 | ");↵ | | 16 | "../resources/dsp-void/");↵
|
16 | }↵ | | 17 | }↵
|
|
17 | public void testPseudoTahoeNested() {↵ | | 18 | public void testParentLevel2() {↵
|
18 | executeTarget("test-pseudo-tahoe-nested");↵ | | 19 | executeTarget("test-parent-level2");↵
|
|
19 | assertPropertyEquals("jar.classpath", "classes/dsp-core/ " +↵ | | 20 | assertPropertyEquals("jar.classpath", "../dsp-core/ " +↵
|
20 | "classes/dsp-pres/ " +↵ | | 21 | "../dsp-pres/ " +↵
|
21 | "classes/dsp-void/ " +↵ | | 22 | "../dsp-void/ " +↵
|
22 | "generated/dsp-core/ " +↵ | | 23 | "../../generated/dsp-core/ " +↵
|
23 | "↵ | | 24 | "../../generated/dsp-pres/ " +↵
|
| | | 25 | "../../generated/dsp-void/ " +↵
|
24 | resources/dsp-core/ " +↵ | | 26 | "../../resources/dsp-core/ " +↵
|
25 | "resources/dsp-pres/↵ | | 27 | "../../resources/dsp-pres/ " +↵
|
26 | ");↵ | | 28 | "../../resources/dsp-void/");↵
|
27 | | | 29 |
|