jmsnell 2003/02/28 14:08:03
Modified: java/test/wsdl/wrapped_holders ThingImpl.java
Wrapped_HoldersTestCase.java
java/test/wsdl/types VerifyTestCase.java
Log:
Fixing WSDL tests to account for the changes in JavaUtils
Revision Changes Path
1.3 +1 -1 xml-axis/java/test/wsdl/wrapped_holders/ThingImpl.java
Index: ThingImpl.java
===================================================================
RCS file: /home/cvs/xml-axis/java/test/wsdl/wrapped_holders/ThingImpl.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ThingImpl.java 11 Dec 2002 22:40:23 -0000 1.2
+++ ThingImpl.java 28 Feb 2003 22:08:03 -0000 1.3
@@ -16,7 +16,7 @@
* @author Tom Jordahl
*/
public class ThingImpl implements test.wsdl.wrapped_holders.Thing{
- public void find_AThing(test.wsdl.wrapped_holders.AThing aThing,
+ public void find_aThing(test.wsdl.wrapped_holders.AThing aThing,
test.wsdl.wrapped_holders.holders.AThingArrayHolder
aThingUnbounded,
test.wsdl.wrapped_holders.holders.OtherDataArrayHolder
otherDataUnbounded)
throws java.rmi.RemoteException {
1.2 +3 -3
xml-axis/java/test/wsdl/wrapped_holders/Wrapped_HoldersTestCase.java
Index: Wrapped_HoldersTestCase.java
===================================================================
RCS file:
/home/cvs/xml-axis/java/test/wsdl/wrapped_holders/Wrapped_HoldersTestCase.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Wrapped_HoldersTestCase.java 24 Sep 2002 16:03:38 -0000 1.1
+++ Wrapped_HoldersTestCase.java 28 Feb 2003 22:08:03 -0000 1.2
@@ -17,10 +17,10 @@
public Wrapped_HoldersTestCase(java.lang.String name) {
super(name);
}
- public void test1ThingFind_AThing() throws Exception {
+ public void test1ThingFind_aThing() throws Exception {
test.wsdl.wrapped_holders.Thing binding;
try {
- binding = new
test.wsdl.wrapped_holders.Wrapped_HoldersLocator().getThing();
+ binding = new
test.wsdl.wrapped_holders.Wrapped_holdersLocator().getThing();
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
@@ -43,7 +43,7 @@
test.wsdl.wrapped_holders.holders.OtherDataArrayHolder OtherDataOut = new
test.wsdl.wrapped_holders.holders.OtherDataArrayHolder();
// call the operation
- binding.find_AThing(AthingInput, AThingsOut, OtherDataOut);
+ binding.find_aThing(AthingInput, AThingsOut, OtherDataOut);
// verify results
assertEquals("Output argument (Things) does not match expected", things[0],
AThingsOut.value[0]);
1.36 +3 -3 xml-axis/java/test/wsdl/types/VerifyTestCase.java
Index: VerifyTestCase.java
===================================================================
RCS file: /home/cvs/xml-axis/java/test/wsdl/types/VerifyTestCase.java,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- VerifyTestCase.java 11 Dec 2002 22:40:22 -0000 1.35
+++ VerifyTestCase.java 28 Feb 2003 22:08:03 -0000 1.36
@@ -56,7 +56,7 @@
import test.wsdl.types.comprehensive_types.PersionCat;
import test.wsdl.types.comprehensive_types.Simple;
import test.wsdl.types.comprehensive_types.SimpleFwd;
-import test.wsdl.types.comprehensive_types.Stock_Quote;
+import test.wsdl.types.comprehensive_types.Stock_quote;
import test.wsdl.types.comprehensive_types.StringParameter;
import test.wsdl.types.comprehensive_types.Time;
import test.wsdl.types.comprehensive_types.Yarn;
@@ -446,7 +446,7 @@
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("elemWComplexReturn
Exception caught: " + re );
}
- Stock_Quote stockQuote = new Stock_Quote();
+ Stock_quote stockQuote = new Stock_quote();
Time time = new Time();
time.setDST(false);
stockQuote.setTime(time);
@@ -457,7 +457,7 @@
stockQuote.setSymbol("AXS");
stockQuote.setLast("5");
ComplexWComplex complexWComplex = new ComplexWComplex();
- complexWComplex.setStock_Quote(stockQuote);
+ complexWComplex.setStock_quote(stockQuote);
complexWComplex.setOutside(22);
try {
binding.complexWComplexIn(complexWComplex);