Author: ningjiang
Date: Mon Jul 14 00:07:57 2008
New Revision: 676495

URL: http://svn.apache.org/viewvc?rev=676495&view=rev
Log:
Polished the CxfEndpointUtilsWithSpringTest

Modified:
    
activemq/camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/util/CxfEndpointUtilsWithSpringTest.java

Modified: 
activemq/camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/util/CxfEndpointUtilsWithSpringTest.java
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/util/CxfEndpointUtilsWithSpringTest.java?rev=676495&r1=676494&r2=676495&view=diff
==============================================================================
--- 
activemq/camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/util/CxfEndpointUtilsWithSpringTest.java
 (original)
+++ 
activemq/camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/util/CxfEndpointUtilsWithSpringTest.java
 Mon Jul 14 00:07:57 2008
@@ -76,11 +76,12 @@
         assertEquals("We should get the right service name", service, 
SERVICE_NAME);
         assertEquals("We should get the setDefaultBus value", 
CxfEndpointUtils.getSetDefaultBus(endpoint),
                      true);
+        assertEquals("The cxf endpoint's DataFromat should be MESSAGE", 
CxfEndpointUtils.getDataFormat(endpoint), DataFormat.MESSAGE);
     }
 
     public void testGetDataFormatFromCxfEndpontProperties() throws Exception {
         CxfEndpoint endpoint = createEndpoint(getEndpointURI() + 
"?dataFormat=PAYLOAD");
-        assertEquals("We should get the Message DataFormat", 
CxfEndpointUtils.getDataFormat(endpoint),
+        assertEquals("We should get the PAYLOAD DataFormat", 
CxfEndpointUtils.getDataFormat(endpoint),
                      DataFormat.PAYLOAD);
     }
 


Reply via email to