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 2013/12/06 23:47:53 UTC

svn commit: r1548741 - /webservices/axiom/trunk/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/factory/TestFactoryIsSingleton.java

Author: veithen
Date: Fri Dec  6 22:47:53 2013
New Revision: 1548741

URL: http://svn.apache.org/r1548741
Log:
Maintain strict separation between OM and SOAP test cases: removed redundant assertions in org.apache.axiom.ts.om.factory.TestFactoryIsSingleton that are also executed in org.apache.axiom.ts.soap.factory.TestFactoryIsSingleton.

Modified:
    webservices/axiom/trunk/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/factory/TestFactoryIsSingleton.java

Modified: webservices/axiom/trunk/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/factory/TestFactoryIsSingleton.java
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/factory/TestFactoryIsSingleton.java?rev=1548741&r1=1548740&r2=1548741&view=diff
==============================================================================
--- webservices/axiom/trunk/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/factory/TestFactoryIsSingleton.java (original)
+++ webservices/axiom/trunk/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/factory/TestFactoryIsSingleton.java Fri Dec  6 22:47:53 2013
@@ -34,7 +34,5 @@ public class TestFactoryIsSingleton exte
 
     protected void runTest() throws Throwable {
         assertSame(metaFactory.getOMFactory(), metaFactory.getOMFactory());
-        assertSame(metaFactory.getSOAP11Factory(), metaFactory.getSOAP11Factory());
-        assertSame(metaFactory.getSOAP12Factory(), metaFactory.getSOAP12Factory());
     }
 }