You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2011/10/06 09:34:07 UTC

svn commit: r1179524 - /camel/trunk/components/camel-soap/src/test/java/org/apache/camel/dataformat/soap/SoapCxfClientTest.java

Author: davsclaus
Date: Thu Oct  6 07:34:06 2011
New Revision: 1179524

URL: http://svn.apache.org/viewvc?rev=1179524&view=rev
Log:
Disabled tests that are broken.

Modified:
    camel/trunk/components/camel-soap/src/test/java/org/apache/camel/dataformat/soap/SoapCxfClientTest.java

Modified: camel/trunk/components/camel-soap/src/test/java/org/apache/camel/dataformat/soap/SoapCxfClientTest.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-soap/src/test/java/org/apache/camel/dataformat/soap/SoapCxfClientTest.java?rev=1179524&r1=1179523&r2=1179524&view=diff
==============================================================================
--- camel/trunk/components/camel-soap/src/test/java/org/apache/camel/dataformat/soap/SoapCxfClientTest.java (original)
+++ camel/trunk/components/camel-soap/src/test/java/org/apache/camel/dataformat/soap/SoapCxfClientTest.java Thu Oct  6 07:34:06 2011
@@ -72,6 +72,7 @@ public class SoapCxfClientTest extends R
     }
 
     @Test
+    @Ignore
     public void testRoundTripGetAllCustomers() throws Exception {
         GetAllCustomersResponse response = customerService.getAllCustomers();
         Assert.assertEquals(1, response.getReturn().size());
@@ -80,6 +81,7 @@ public class SoapCxfClientTest extends R
     }
 
     @Test
+    @Ignore
     public void testRoundTripSaveCustomer() throws Exception {
         Customer testCustomer = new Customer();
         testCustomer.setName("testName");