1 16 17 package test.httpunit; 18 import junit.framework.Test; 19 import junit.framework.TestSuite; 20 import test.AxisTestBase; 21 22 25 public class FunctionalTests extends AxisTestBase { 26 27 public FunctionalTests(String s) { 28 super(s); 29 } 30 31 32 37 public static Test suite() throws Exception { 38 TestSuite suite = new TestSuite(); 39 suite.addTestSuite(ServicesTest.class); 40 suite.addTestSuite(JwsTest.class); 41 if(isPropertyTrue("test.functional.httpunit.jsp")) { 42 suite.addTestSuite(JspTest.class); 43 } 44 if(isPropertyTrue("test.functional.httpunit.adminservlet")) { 45 suite.addTestSuite(AdminTest.class); 46 } 47 return suite; 48 } 49 } 50 | Popular Tags |