1 | public class AntVersionTest extends BuildFileTest {↵ | | 1 | public class GlobMapperTest extends BuildFileTest {↵
|
2 | ↵ | | |
|
3 | public AntVersionTest(String name) {↵ | | 2 | public GlobMapperTest(String name) {↵
|
4 | super(name);↵ | | 3 | super(name);↵
|
5 | }↵ | | 4 | }↵
|
6 | ↵ | | |
|
7 | public void setUp() throws Exception {↵ | | 5 | public void setUp() {↵
|
8 | configureProject("src/etc/testcases/taskdefs/conditions/antversion.xml");↵ | | 6 | configureProject("src/etc/testcases/types/mappers/globmapper.xml");↵
|
9 | }↵ | | 7 | }↵
|
10 | ↵ | | |
|
11 | public void testAtLeast() {↵ | | 8 | public void testIgnoreCase() {↵
|
12 | executeTarget("testatleast");↵ | | 9 | executeTarget("ignore.case");↵
|
13 | }↵ | | 10 | }↵
|
14 | ↵ | | |
|
15 | public void testExactly() {↵ | | 11 | public void testHandleDirSep() {↵
|
16 | executeTarget("testexactly");↵ | | 12 | executeTarget("handle.dirsep");↵
|
17 | | | 13 |
|