gdaniels 02/02/27 13:59:29 Modified: java/test/wsdl/interop3/compound1 Compound1TestCase.java java/test/wsdl/interop3/emptysa EmptySATestCase.java Removed: java/test/wsdl/interop3/compound1 NstoPkg.properties java/test/wsdl/interop3/emptysa NstoPkg.properties java/test/wsdl/interop3/import1 NstoPkg.properties java/test/wsdl/interop3/import2 NstoPkg.properties java/test/wsdl/interop3/import3 NstoPkg.properties Log: Switching case of "NStoPkg" Revision Changes Path 1.2 +24 -0 xml-axis/java/test/wsdl/interop3/compound1/Compound1TestCase.java Index: Compound1TestCase.java =================================================================== RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/compound1/Compound1TestCase.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- Compound1TestCase.java 27 Feb 2002 15:48:20 -0000 1.1 +++ Compound1TestCase.java 27 Feb 2002 21:59:28 -0000 1.2 @@ -2,6 +2,8 @@ import test.wsdl.interop3.compound1.xsd.Document; +import java.net.URL; + /* <!-- SOAP Builder's round III web services --> <!-- interoperability testing: import1 --> @@ -23,10 +25,19 @@ */ public class Compound1TestCase extends junit.framework.TestCase { + URL url; + public Compound1TestCase(String name) { super(name); } + protected void setUp() throws Exception { + try { + url = new URL("http://localhost:8080/stkv3/wsdl/Compound1.wsdl"); + } catch (Exception e) { + } + } + public void testStep3() { SoapInteropCompound1Binding binding; try { @@ -51,6 +62,7 @@ } } + /* public void testStep5() { SoapInteropCompound1Binding binding; try { @@ -117,9 +129,21 @@ } */ + public static void main(String[] args) { junit.textui.TestRunner.run(new junit.framework.TestSuite(Compound1TestCase.class)); + String str; + str = AppendBaby(args); + System.out.println(str); + + String s2 = args[0] + ", baby"; } // main + + private static String AppendBaby(String[] args) { + String str; + str = args[0] + ", baby"; + return str; + } } 1.2 +2 -1 xml-axis/java/test/wsdl/interop3/emptysa/EmptySATestCase.java Index: EmptySATestCase.java =================================================================== RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/emptysa/EmptySATestCase.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- EmptySATestCase.java 27 Feb 2002 15:50:57 -0000 1.1 +++ EmptySATestCase.java 27 Feb 2002 21:59:28 -0000 1.2 @@ -1,6 +1,6 @@ package test.wsdl.interop3.emptysa; -import test.wsdl.interop3.emptysa.step6.EmptySALocator; +//import test.wsdl.interop3.emptysa.step6.EmptySALocator; /* <!-- SOAP Builder's round III web services --> @@ -65,6 +65,7 @@ } } + /* public void testStep7() { test.wsdl.interop3.emptysa.step6.SoapInteropEmptySAPortType binding; try {