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