1 | class AntVersionTest extends BuildFileTest {↵ | | 1 | class TaskdefForCopyTest extends BuildFileTest {↵
|
2 | ↵ | | 2 | ↵
|
3 | public AntVersionTest(String name) {↵ | | 3 | TaskdefForCopyTest(String name) {↵
|
4 | super(name);↵ | | 4 | super(name);↵
|
5 | }↵ | | 5 | }↵
|
|
6 | ↵ | | 6 | ↵
|
7 | public void setUp() throws Exception {↵ | | 7 | public void setUp() ↵
|
| | | 8 | {↵
|
8 | configureProject("src/etc/testcases/taskdefs/conditions/antversion.xml");↵ | | 9 | configureProject("src/etc/testcases/types/mapper.xml");↵
|
9 | }↵ | | 10 | }↵
|
|
10 | ↵ | | 11 | ↵
|
11 | public void testAtLeast() {↵ | | 12 | public void tearDown() {↵
|
12 | executeTarget("testatleast");↵ | | 13 | executeTarget("cleanup");↵
|
13 | }↵ | | 14 | }↵
|
|
14 | ↵ | | 15 | ↵
|
15 | public void testExactly() {↵ | | 16 | public void test1() {↵
|
16 | executeTarget("testexactly");↵ | | 17 | executeTarget("test1");↵
|
17 | } | | 18 | }↵
|
| | | 19 |
|