gdaniels 2003/02/01 11:18:25
Modified: java/test/wsdl/soap12/additional
WhiteMesaSoap12AddTestSvcTestCase.java
Log:
More work on the SOAP 1.2 tests - closer, but still not there yet.
Revision Changes Path
1.3 +2 -2
xml-axis/java/test/wsdl/soap12/additional/WhiteMesaSoap12AddTestSvcTestCase.java
Index: WhiteMesaSoap12AddTestSvcTestCase.java
===================================================================
RCS file:
/home/cvs/xml-axis/java/test/wsdl/soap12/additional/WhiteMesaSoap12AddTestSvcTestCase.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- WhiteMesaSoap12AddTestSvcTestCase.java 31 Jan 2003 23:04:39 -0000 1.2
+++ WhiteMesaSoap12AddTestSvcTestCase.java 1 Feb 2003 19:18:25 -0000 1.3
@@ -191,7 +191,7 @@
echoSimpleTypesAsStructOfSchemaTypes(STRING_VAL,
new Integer(INT_VAL),
new Float(FLOAT_VAL),
- new Object());
+ "another string");
assertEquals(Constants.XSD_STRING, value.getType1());
assertEquals(Constants.XSD_INT, value.getType2());
assertEquals(Constants.XSD_FLOAT, value.getType3());
@@ -241,7 +241,7 @@
// Test operation
java.lang.String value = null;
value = binding.echoString(STRING_VAL);
- assertEquals(STRING_VAL, value);
+ assertEquals(STRING_VAL.toUpperCase(), value);
}
public void test10Soap12AddTestDocUpperPortEchoSenderFault() throws Exception {