Package org.apache.axiom.ts.soap

Examples of org.apache.axiom.ts.soap.SOAPTestSuiteBuilder


import org.apache.axiom.om.impl.llom.factory.OMLinkedListMetaFactory;
import org.apache.axiom.ts.soap.SOAPTestSuiteBuilder;

public class SOAPImplementationTest extends TestCase {
    public static TestSuite suite() {
        SOAPTestSuiteBuilder builder = new SOAPTestSuiteBuilder(new OMLinkedListMetaFactory(), true, true);
        return builder.build();
    }
View Full Code Here


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();
    }
View Full Code Here

import org.apache.axiom.om.impl.llom.factory.OMLinkedListMetaFactory;
import org.apache.axiom.ts.soap.SOAPTestSuiteBuilder;

public class SOAPImplementationTest extends TestCase {
    public static TestSuite suite() {
        SOAPTestSuiteBuilder builder = new SOAPTestSuiteBuilder(new OMLinkedListMetaFactory());
        return builder.build();
    }
View Full Code Here

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());
        builder.exclude(TestWSCommons202.class);
        builder.exclude(TestGetDefaultFaultEnvelope.class);
       
        // 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);
       
        // TODO: fails because DOOM's factories are not stateless
        //       (and createOMDocument doesn't create a new document in this case)
        builder.exclude(TestXPathAppliedToSOAPEnvelope.class, "(createDocument=true)");
       
        return builder.build();
    }
View Full Code Here

TOP

Related Classes of org.apache.axiom.ts.soap.SOAPTestSuiteBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.