1 | void testNoTarget() {↵ | | 1 | void test↵
|
2 | configureProject("src/etc/testc↵ | | 2 | PseudoTahoeRefid() {↵
|
| | | 3 | executeTarget("test-pseudo-tahoe-refid");↵
|
|
3 | ases/core/topleveltasks/notarget.xml");↵ | | 4 | assertPropertyEquals("jar.classpath", "classes/dsp-core/↵
|
4 | expectLog("", "Called↵ | | 5 | " +↵
|
| | | 6 | "classes/dsp-pres/ " +↵
|
| | | 7 | "classes/dsp-void/ " +↵
|
| | | 8 | "generated/dsp-core/ " +↵
|
| | | 9 | "resources/dsp-core/ " +↵
|
5 | ");↵ | | 10 | "resources/dsp-pres/");↵
|
6 | }↵ | | 11 | }↵
|
|
7 | public void testCalledFromTopLevelAnt() {↵ | | 12 | public void test↵
|
8 | configureProject("src/etc/testc↵ | | 13 | PseudoTahoeNested() {↵
|
| | | 14 | executeTarget("test-pseudo-tahoe-nested");↵
|
|
9 | ases/core/topleveltasks/toplevelant.xml");↵ | | 15 | assertPropertyEquals("jar.classpath", "classes/dsp-core/↵
|
10 | expectLog("", "Called↵ | | 16 | " +↵
|
| | | 17 | "classes/dsp-pres/ " +↵
|
| | | 18 | "classes/dsp-void/ " +↵
|
| | | 19 | "generated/dsp-core/ " +↵
|
| | | 20 | "resources/dsp-core/ " +↵
|
11 | ");↵ | | 21 | "resources/dsp-pres/");↵
|
12 | }↵ | | 22 | }↵
|
|
13 | public void testCalledFromTargetLevelAnt() {↵ | | 23 | public void test↵
|
14 | configureProject("src/etc/testcases/core/topleveltasks/targetlevelant.xml");↵ | | |
|
15 | expectLog("foo", "Called↵ | | 24 | ParentLevel2WithJars() {↵
|
| | | 25 | executeTarget("test-parent-level2-with-jars");↵
|
|
| | | 26 | assertPropertyEquals("jar.classpath", "../../lib/acme-core.jar " +↵
|
| | | 27 | "../../lib/acme-pres.jar " +↵
|
| | | 28 | "../dsp-core/ " +↵
|
| | | 29 | "../dsp-pres/ " +↵
|
| | | 30 | "../dsp-void/ " +↵
|
| | | 31 | "../../generated/dsp-core/ " +↵
|
| | | 32 | "../../generated/dsp-pres/ " +↵
|
| | | 33 | "../../generated/dsp-void/ " +↵
|
| | | 34 | "../../resources/dsp-core/ " +↵
|
| | | 35 | "../../resources/dsp-pres/ " +↵
|
16 | ");↵ | | 36 | "../../resources/dsp-void/");↵
|
17 | | | 37 |
|