import org.apache.axiom.ts.soap12.fault.TestMoreChildrenAddition;
import org.apache.axiom.ts.soap12.faultcode.TestSetValueFromQNameWithExistingValue;
public class SOAPImplementationTest extends TestCase {
public static TestSuite suite() {
SOAPTestSuiteBuilder builder = new SOAPTestSuiteBuilder(new OMDOMMetaFactory(), false, false);
builder.exclude(TestWSCommons202.class);
// TODO: getDefaultFaultEnvelope is broken
builder.exclude(TestGetDefaultFaultEnvelope.class, "(spec=soap11)");
builder.exclude(TestHasFaultAfterReplace.class, "(spec=soap11)");
// TODO: not sure if this is an issue in DOOM or if the test case is wrong
builder.exclude(TestMoreChildrenAddition.class);
// SOAPFaultText is currently unsupported in DOOM
builder.exclude(TestSetLang.class);
// TODO: a couple of prerequisites for these tests are not implemented
builder.exclude(org.apache.axiom.ts.soap11.faultcode.TestSetValueFromQName.class);
builder.exclude(org.apache.axiom.ts.soap12.faultcode.TestSetValueFromQName.class);
builder.exclude(TestSetValueFromQNameWithExistingValue.class);
return builder.build();
}