FileDocCategorySizeDatePackage
AxisTestBase.javaAPI DocApache Axis 1.41498Sat Apr 22 18:57:26 BST 2006test

AxisTestBase

public abstract class AxisTestBase extends org.custommonkey.xmlunit.XMLTestCase
base test class for Axis test cases.
author
steve loughran

Fields Summary
Constructors Summary
public AxisTestBase(String s)

        super(s);
    
Methods Summary
public static booleanisOnline()
test for the online tests being enabled

return
true if 'online' tests are allowed.

        return isPropertyTrue("test.functional.online");
    
public static booleanisPropertyTrue(java.lang.String propertyname)
probe for a property being set in ant terms.

param
propertyname
return
true if the system property is set and set to true or yes

        String setting = System.getProperty(propertyname);
        return "true".equalsIgnoreCase(setting) ||
                "yes".equalsIgnoreCase(setting);