1 17 18 package org.apache.tools.ant.taskdefs; 19 20 import org.apache.tools.ant.BuildFileTest; 21 22 26 public class WarTest extends BuildFileTest { 27 public static final String TEST_BUILD_FILE 28 = "src/etc/testcases/taskdefs/war.xml"; 29 30 public WarTest(String name) { 31 super(name); 32 } 33 34 public void setUp() { 35 configureProject(TEST_BUILD_FILE); 36 } 37 38 public void tearDown() { 39 executeTarget("clean"); 40 } 41 42 45 public void testLibRefs() { 46 executeTarget("testlibrefs"); 47 } 48 } 49 | Popular Tags |