You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ch...@apache.org on 2005/09/19 11:11:06 UTC

svn commit: r290098 [2/2] - in /webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/interop: sun/complex/ sun/simple/ whitmesa/round1/ whitmesa/round2/ whitmesa/round2/Soap12/ whitmesa/round3/ whitmesa/round4/complex/ whitmesa/round...

Modified: webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/interop/whitmesa/round4/simple/WhitemesaR4SimpleTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/interop/whitmesa/round4/simple/WhitemesaR4SimpleTest.java?rev=290098&r1=290097&r2=290098&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/interop/whitmesa/round4/simple/WhitemesaR4SimpleTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/interop/whitmesa/round4/simple/WhitemesaR4SimpleTest.java Mon Sep 19 02:09:58 2005
@@ -19,14 +19,7 @@
 import junit.framework.TestCase;
 import org.apache.axis2.XMLComparatorInterop;
 import org.apache.axis2.interop.whitemesa.round4.simple.EchoBlockingClient;
-import org.apache.axis2.interop.whitemesa.round4.simple.utils.EchoEmptyFaultClientUtil;
-import org.apache.axis2.interop.whitemesa.round4.simple.utils.EchoIntArrayFaultClientUtil;
-import org.apache.axis2.interop.whitemesa.round4.simple.utils.EchoMultipleFaults1ClientUtil;
-import org.apache.axis2.interop.whitemesa.round4.simple.utils.EchoMultipleFaults2ClientUtil;
-import org.apache.axis2.interop.whitemesa.round4.simple.utils.EchoMultipleFaults3Clientutil;
-import org.apache.axis2.interop.whitemesa.round4.simple.utils.EchoMultipleFaults4ClientUtil;
-import org.apache.axis2.interop.whitemesa.round4.simple.utils.EchoStringFaultClientUtil;
-import org.apache.axis2.interop.whitemesa.round4.simple.utils.WhitemesaR4ClientUtil;
+import org.apache.axis2.interop.whitemesa.round4.simple.utils.*;
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.om.OMXMLParserWrapper;
 import org.apache.axis2.om.impl.llom.exception.XMLComparisonException;
@@ -75,14 +68,14 @@
     public void testEchoEmptyFault()  throws Exception{
         util=new EchoEmptyFaultClientUtil();
         retEle =client.sendMsg(util,soapAction);
-        assertTrue(compare(retEle,"interopt/whitemesa/round4/res/resEmptyFault.xml"));
+        assertTrue(compare(retEle,"interop/whitemesa/round4/res/resEmptyFault.xml"));
     }
 
     public void testEchoStringFault() throws Exception{
         //echoStringFault
         util=new EchoStringFaultClientUtil();
         retEle =client.sendMsg(util,soapAction);
-        assertTrue(compare(retEle,"interopt/whitemesa/round4/res/resStringFault.xml"));
+        assertTrue(compare(retEle,"interop/whitemesa/round4/res/resStringFault.xml"));
 
     }
 
@@ -91,7 +84,7 @@
     public void testEchoIntArrayFault() throws Exception{
         util=new EchoIntArrayFaultClientUtil();
         retEle =client.sendMsg(util,soapAction);
-        assertTrue(compare(retEle,"interopt/whitemesa/round4/res/resIntArray.xml"));
+        assertTrue(compare(retEle,"interop/whitemesa/round4/res/resIntArray.xml"));
 
 
     }
@@ -99,24 +92,24 @@
     public void testEchoMultipleFaults1() throws Exception{
         util=new EchoMultipleFaults1ClientUtil();
         retEle =client.sendMsg(util,soapAction);
-        assertTrue(compare(retEle,"interopt/whitemesa/round4/res/resMultipleFaults1.xml"));
+        assertTrue(compare(retEle,"interop/whitemesa/round4/res/resMultipleFaults1.xml"));
 
     }
     public void testEchoMultipleFaults2() throws Exception{
         util=new EchoMultipleFaults2ClientUtil();
         retEle =client.sendMsg(util,soapAction);
-        assertTrue(compare(retEle,"interopt/whitemesa/round4/res/resMultiplefaults2.xml"));
+        assertTrue(compare(retEle,"interop/whitemesa/round4/res/resMultiplefaults2.xml"));
 
     }
     public void testEchoMultipleFaults3() throws Exception{
         util=new EchoMultipleFaults3Clientutil();
         retEle =client.sendMsg(util,soapAction);
-        assertTrue(compare(retEle,"interopt/whitemesa/round4/res/resMultipleFaults3.xml"));
+        assertTrue(compare(retEle,"interop/whitemesa/round4/res/resMultipleFaults3.xml"));
     }
     public void testEchoMultipleFaults4() throws Exception{
         util=new EchoMultipleFaults4ClientUtil();
         retEle =client.sendMsg(util,soapAction);
-        assertTrue( compare(retEle,"interopt/whitemesa/round4/res/resMultipleFaults4.xml"));
+        assertTrue( compare(retEle,"interop/whitemesa/round4/res/resMultipleFaults4.xml"));
     }
 
 }