You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2016/04/03 00:31:44 UTC

svn commit: r1737540 - in /webservices/axiom/trunk/implementations: axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAPImplementationTest.java axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAPImplementationTest.java

Author: veithen
Date: Sat Apr  2 22:31:44 2016
New Revision: 1737540

URL: http://svn.apache.org/viewvc?rev=1737540&view=rev
Log:
Enable test cases that actually pass.

Modified:
    webservices/axiom/trunk/implementations/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAPImplementationTest.java
    webservices/axiom/trunk/implementations/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAPImplementationTest.java

Modified: webservices/axiom/trunk/implementations/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAPImplementationTest.java
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAPImplementationTest.java?rev=1737540&r1=1737539&r2=1737540&view=diff
==============================================================================
--- webservices/axiom/trunk/implementations/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAPImplementationTest.java (original)
+++ webservices/axiom/trunk/implementations/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAPImplementationTest.java Sat Apr  2 22:31:44 2016
@@ -28,14 +28,6 @@ public class SOAPImplementationTest exte
     public static TestSuite suite() {
         SOAPTestSuiteBuilder builder = new SOAPTestSuiteBuilder(OMDOMMetaFactory.INSTANCE, false);
         
-        // TODO: currently broken; need a better solution for parent checks
-        builder.exclude(org.apache.axiom.ts.soap.fault.TestWrongParent1.class);
-        builder.exclude(org.apache.axiom.ts.soap.fault.TestWrongParent2.class);
-        builder.exclude(org.apache.axiom.ts.soap.fault.TestWrongParent3.class);
-        builder.exclude(org.apache.axiom.ts.soap.headerblock.TestWrongParent1.class);
-        builder.exclude(org.apache.axiom.ts.soap.headerblock.TestWrongParent2.class);
-        builder.exclude(org.apache.axiom.ts.soap.headerblock.TestWrongParent3.class);
-        
         return builder.build();
     }
 }

Modified: webservices/axiom/trunk/implementations/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAPImplementationTest.java
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAPImplementationTest.java?rev=1737540&r1=1737539&r2=1737540&view=diff
==============================================================================
--- webservices/axiom/trunk/implementations/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAPImplementationTest.java (original)
+++ webservices/axiom/trunk/implementations/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAPImplementationTest.java Sat Apr  2 22:31:44 2016
@@ -23,15 +23,11 @@ import junit.framework.TestSuite;
 
 import org.apache.axiom.om.impl.llom.factory.OMLinkedListMetaFactory;
 import org.apache.axiom.ts.soap.SOAPTestSuiteBuilder;
-import org.apache.axiom.ts.soap.envelope.TestClone;
 
 public class SOAPImplementationTest extends TestCase {
     public static TestSuite suite() {
         SOAPTestSuiteBuilder builder = new SOAPTestSuiteBuilder(OMLinkedListMetaFactory.INSTANCE, true);
         
-        // TODO
-        builder.exclude(TestClone.class, "(message=soap/soap11/soapfault2.xml)");
-        
         return builder.build();
     }
 }