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/01/28 00:48:54 UTC

svn commit: r1727220 - /webservices/axiom/trunk/systests/spring-ws-tests/src/test/java/org/apache/axiom/systest/springws/SpringWSTest.java

Author: veithen
Date: Wed Jan 27 23:48:54 2016
New Revision: 1727220

URL: http://svn.apache.org/viewvc?rev=1727220&view=rev
Log:
Enable the regression test for AXIOM-463 which passes with Spring-WS 2.2.4.

Modified:
    webservices/axiom/trunk/systests/spring-ws-tests/src/test/java/org/apache/axiom/systest/springws/SpringWSTest.java

Modified: webservices/axiom/trunk/systests/spring-ws-tests/src/test/java/org/apache/axiom/systest/springws/SpringWSTest.java
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/systests/spring-ws-tests/src/test/java/org/apache/axiom/systest/springws/SpringWSTest.java?rev=1727220&r1=1727219&r2=1727220&view=diff
==============================================================================
--- webservices/axiom/trunk/systests/spring-ws-tests/src/test/java/org/apache/axiom/systest/springws/SpringWSTest.java (original)
+++ webservices/axiom/trunk/systests/spring-ws-tests/src/test/java/org/apache/axiom/systest/springws/SpringWSTest.java Wed Jan 27 23:48:54 2016
@@ -23,17 +23,12 @@ import junit.framework.TestSuite;
 
 import org.apache.axiom.ts.springws.MessageFactoryConfigurator;
 import org.apache.axiom.ts.springws.SpringWSTestSuiteBuilder;
-import org.apache.axiom.ts.springws.scenario.jaxb2.JAXB2Test;
 
 public class SpringWSTest extends TestCase {
     public static TestSuite suite() {
         SpringWSTestSuiteBuilder builder = new SpringWSTestSuiteBuilder(
                 new AxiomMessageFactoryConfigurator(),
                 MessageFactoryConfigurator.SAAJ);
-        
-        // TODO: AXIOM-463
-        builder.exclude(JAXB2Test.class);
-        
         return builder.build();
     }
 }