1 17 18 package org.apache.tools.ant.taskdefs; 19 20 import org.apache.tools.ant.BuildFileTest; 21 22 25 public class PathConvertTest extends BuildFileTest { 26 private static final String BUILD_PATH = "src/etc/testcases/taskdefs/"; 27 private static final String BUILD_FILENAME = "pathconvert.xml"; 28 private static final String BUILD_FILE = BUILD_PATH + BUILD_FILENAME; 29 30 public PathConvertTest(String name) { 31 super(name); 32 } 33 34 public void setUp() { 35 configureProject(BUILD_FILE); 36 } 37 38 public void testMap() { 39 test("testmap"); 40 } 41 42 public void testMapper() { 43 test("testmapper"); 44 } 45 46 public void testNoTargetOs() { 47 executeTarget("testnotargetos"); 48 } 49 50 private void test(String target) { 51 executeTarget(target); 52 assertPropertyEquals("result", "test#" + BUILD_FILENAME); 53 } 54 55 } 56 | Popular Tags |