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 ia...@apache.org on 2003/12/19 10:10:19 UTC

cvs commit: ws-axis/java/test/wsdl/wrapped_holders Wrapped_HoldersTestCase.java

ias         2003/12/19 01:10:19

  Modified:    java/test/wsdl/wrapped_holders Wrapped_HoldersTestCase.java
  Log:
  Fix for Bug 25558 - Mapped aThing parameter of find_aThing method to String
  
  Revision  Changes    Path
  1.3       +7 -7      ws-axis/java/test/wsdl/wrapped_holders/Wrapped_HoldersTestCase.java
  
  Index: Wrapped_HoldersTestCase.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/test/wsdl/wrapped_holders/Wrapped_HoldersTestCase.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Wrapped_HoldersTestCase.java	28 Feb 2003 22:08:03 -0000	1.2
  +++ Wrapped_HoldersTestCase.java	19 Dec 2003 09:10:18 -0000	1.3
  @@ -30,15 +30,15 @@
           assertTrue("binding is null", binding != null);
   
           // expected results
  -        test.wsdl.wrapped_holders.AThing[] things = new test.wsdl.wrapped_holders.AThing[2];
  -        things[0] = new AThing("Thing one");
  -        things[1] = new AThing("Thing two");
  -        test.wsdl.wrapped_holders.OtherData[] others = new test.wsdl.wrapped_holders.OtherData[2];
  -        others[0] = new OtherData("Other 1");
  -        others[1] = new OtherData("Other 2");
  +        String[] things = new String[2];
  +        things[0] = new String("Thing one");
  +        things[1] = new String("Thing two");
  +        String[] others = new String[2];
  +        others[0] = new String("Other 1");
  +        others[1] = new String("Other 2");
           
           // input arguments
  -        AThing AthingInput = new AThing("This is a test");
  +        String AthingInput = new String("This is a test");
           test.wsdl.wrapped_holders.holders.AThingArrayHolder AThingsOut = new test.wsdl.wrapped_holders.holders.AThingArrayHolder();
           test.wsdl.wrapped_holders.holders.OtherDataArrayHolder OtherDataOut = new test.wsdl.wrapped_holders.holders.OtherDataArrayHolder();