1 | DeleteTest(String name) {↵ | | 1 | ConditionTest(String name) {↵
|
2 | super(name);↵ | | 2 | super(name);↵
|
3 | }↵ | | 3 | }↵
|
|
|
| | | 4 | /**↵
|
| | | 5 | * The JUnit setup method↵
|
| | | 6 | */↵
|
4 | public void setUp() {↵ | | 7 | public void setUp() {↵
|
5 | configureProject("src/etc/testcases/taskdefs/delete.xml");↵ | | 8 | configureProject("src/etc/testcases/taskdefs/condition.xml");↵
|
6 | }↵ | | 9 | }↵
|
|
|
| | | 10 | /**↵
|
| | | 11 | * The teardown method for JUnit↵
|
| | | 12 | */↵
|
7 | public void tearDown() {↵ | | 13 | public void tearDown() {↵
|
8 | executeTarget("cleanup");↵ | | 14 | executeTarget("cleanup");↵
|
9 | }↵ | | 15 | }↵
|
|
10 | public void test1() {↵ | | 16 | public void testBasic() {↵
|
11 | expectBuildException("test1", "required argument not specified");↵ | | 17 | expectPropertySet("basic","basic");↵
|
12 | | | 18 |
|