FileDocCategorySizeDatePackage
FunctionalTests.javaAPI DocApache Axis 1.41446Sat Apr 22 18:57:28 BST 2006test.httpunit

FunctionalTests

public class FunctionalTests extends test.AxisTestBase
test httpunit

Fields Summary
Constructors Summary
public FunctionalTests(String s)

        super(s);
    
Methods Summary
public static junit.framework.Testsuite()
here are the tests we run

return
suite of tests
throws
Exception

        TestSuite suite = new TestSuite();
        suite.addTestSuite(ServicesTest.class);
        suite.addTestSuite(JwsTest.class);
        if(isPropertyTrue("test.functional.httpunit.jsp")) {
            suite.addTestSuite(JspTest.class);
        }
        if(isPropertyTrue("test.functional.httpunit.adminservlet")) {
            suite.addTestSuite(AdminTest.class);
        }
        return suite;