You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ff...@apache.org on 2006/08/31 15:31:02 UTC

svn commit: r438911 - /incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/jaxws/HeaderClientServerTest.java

Author: ffang
Date: Thu Aug 31 06:31:01 2006
New Revision: 438911

URL: http://svn.apache.org/viewvc?rev=438911&view=rev
Log:
minor fix for previous commit

Modified:
    incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/jaxws/HeaderClientServerTest.java

Modified: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/jaxws/HeaderClientServerTest.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/jaxws/HeaderClientServerTest.java?rev=438911&r1=438910&r2=438911&view=diff
==============================================================================
--- incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/jaxws/HeaderClientServerTest.java (original)
+++ incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/jaxws/HeaderClientServerTest.java Thu Aug 31 06:31:01 2006
@@ -34,6 +34,7 @@
 
 
 //import org.apache.cxf.systest.common.ClientServerSetupBase;
+import org.apache.cxf.systest.common.ClientServerSetupBase;
 import org.apache.cxf.systest.common.ClientServerTestBase;
 import org.apache.cxf.systest.common.TestServerBase;
 import org.apache.header_test.SOAPHeaderService;
@@ -83,12 +84,12 @@
     
     public static Test suite() throws Exception {
         TestSuite suite = new TestSuite(HeaderClientServerTest.class);
-        /*return new ClientServerSetupBase(suite) {
+        return new ClientServerSetupBase(suite) {
             public void startServers() throws Exception {
                 assertTrue("server did not launch correctly", launchServer(MyServer.class));
             }
-        };*/
-        return suite;
+        };
+        
         
 
     }