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 gd...@apache.org on 2001/06/27 06:45:19 UTC

cvs commit: xml-axis/java/test/functional/ant RunAxisFunctionalTestsTask.java

gdaniels    01/06/26 21:45:19

  Modified:    java/test/functional TestAddressBookSample.java
                        TestBidBuySample.java TestMiscSample.java
                        TestStockSample.java TestTransportSample.java
               java/test/functional/ant RunAxisFunctionalTestsTask.java
  Log:
  Fix AdminClient usage to match current state.
  
  Revision  Changes    Path
  1.2       +2 -2      xml-axis/java/test/functional/TestAddressBookSample.java
  
  Index: TestAddressBookSample.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/functional/TestAddressBookSample.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TestAddressBookSample.java	2001/06/14 07:04:16	1.1
  +++ TestAddressBookSample.java	2001/06/27 04:45:15	1.2
  @@ -60,7 +60,7 @@
   import java.util.*;
   
   import org.apache.axis.AxisFault ;
  -import org.apache.axis.client.http.AdminClient;
  +import org.apache.axis.client.AdminClient;
   import org.apache.axis.utils.Debug ;
   import org.apache.axis.utils.Options ;
   import org.apache.axis.utils.QName ;
  @@ -81,7 +81,7 @@
       
       public void doTestDeploy () throws Exception {
           String[] args = { "samples/addressbook/deploy.xml" };
  -        new AdminClient().doAdmin(args);
  +        AdminClient.main(args);
       }
       
       public void doTest () throws Exception {
  
  
  
  1.3       +3 -3      xml-axis/java/test/functional/TestBidBuySample.java
  
  Index: TestBidBuySample.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/functional/TestBidBuySample.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- TestBidBuySample.java	2001/06/05 12:15:24	1.2
  +++ TestBidBuySample.java	2001/06/27 04:45:15	1.3
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -60,7 +60,7 @@
   import java.util.*;
   
   import org.apache.axis.AxisFault ;
  -import org.apache.axis.client.http.AdminClient;
  +import org.apache.axis.client.AdminClient;
   import org.apache.axis.utils.Debug ;
   import org.apache.axis.utils.Options ;
   import org.apache.axis.utils.QName ;
  @@ -81,7 +81,7 @@
       
       public void doTestDeploy () throws Exception {
           String[] args = { "samples/bidbuy/deploy.xml" };
  -        new AdminClient().doAdmin(args);
  +        AdminClient.main(args);
       }
       
       public void doTest () throws Exception {
  
  
  
  1.2       +1 -2      xml-axis/java/test/functional/TestMiscSample.java
  
  Index: TestMiscSample.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/functional/TestMiscSample.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TestMiscSample.java	2001/06/01 06:48:00	1.1
  +++ TestMiscSample.java	2001/06/27 04:45:16	1.2
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -60,7 +60,6 @@
   import java.util.*;
   
   import org.apache.axis.AxisFault ;
  -import org.apache.axis.client.http.AdminClient;
   import org.apache.axis.utils.Debug ;
   import org.apache.axis.utils.Options ;
   import org.apache.axis.utils.QName ;
  
  
  
  1.4       +4 -4      xml-axis/java/test/functional/TestStockSample.java
  
  Index: TestStockSample.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/functional/TestStockSample.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TestStockSample.java	2001/06/21 02:45:59	1.3
  +++ TestStockSample.java	2001/06/27 04:45:16	1.4
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -60,7 +60,7 @@
   import java.util.*;
   
   import org.apache.axis.AxisFault ;
  -import org.apache.axis.client.http.AdminClient;
  +import org.apache.axis.client.AdminClient;
   import org.apache.axis.utils.Debug ;
   import org.apache.axis.utils.Options ;
   import org.apache.axis.utils.QName ;
  @@ -87,7 +87,7 @@
       
       public void doTestDeploy () throws Exception {
           String[] args = { "samples/stock/deploy.xml" };
  -        new AdminClient().doAdmin(args);
  +        AdminClient.main(args);
       }
       
       public void doTestStock () throws Exception {
  @@ -104,7 +104,7 @@
       
       public void doTestUndeploy () throws Exception {
           String[] args = { "samples/stock/undeploy.xml" };
  -        new AdminClient().doAdmin(args);
  +        AdminClient.main(args);
       }
       
       
  
  
  
  1.7       +1 -1      xml-axis/java/test/functional/TestTransportSample.java
  
  Index: TestTransportSample.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/functional/TestTransportSample.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- TestTransportSample.java	2001/06/21 13:33:53	1.6
  +++ TestTransportSample.java	2001/06/27 04:45:16	1.7
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.2       +1 -1      xml-axis/java/test/functional/ant/RunAxisFunctionalTestsTask.java
  
  Index: RunAxisFunctionalTestsTask.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/functional/ant/RunAxisFunctionalTestsTask.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RunAxisFunctionalTestsTask.java	2001/05/31 09:25:25	1.1
  +++ RunAxisFunctionalTestsTask.java	2001/06/27 04:45:19	1.2
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without