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 2003/05/28 16:19:54 UTC

cvs commit: xml-axis/java/test/dynamic PackageTests.java

gdaniels    2003/05/28 07:19:54

  Modified:    java/test/dynamic PackageTests.java
  Log:
  Shut off these tests for the moment, since the weather service at
  XMethods is broken.  Junit tests in general (as opposed to "functional"
  tests) should not be accessing the network, so these should be moved
  to test.wsdl.dynamic instead.  <insert usual plea for "all-tests" not to
  require a network connection here>
  
  Revision  Changes    Path
  1.5       +7 -3      xml-axis/java/test/dynamic/PackageTests.java
  
  Index: PackageTests.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/dynamic/PackageTests.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PackageTests.java	22 Apr 2003 19:36:36 -0000	1.4
  +++ PackageTests.java	28 May 2003 14:19:54 -0000	1.5
  @@ -73,9 +73,13 @@
       public static Test suite() throws Exception {
           TestSuite suite = new TestSuite();
   
  -        suite.addTestSuite(ServiceGetPort.class);
  -        suite.addTestSuite(TestDynamicInvoker.class);
  -        suite.addTestSuite(TestJAXRPCDII.class);
  +        // FIX BUILD 05/27/03 : "junit" tests should NOT be accessing the
  +        // network at all - these tests should move to test.wsdl.dynamic
  +        // and should not reference services which might go down. --gdaniels
  +        
  +        //suite.addTestSuite(ServiceGetPort.class);
  +        //suite.addTestSuite(TestDynamicInvoker.class);
  +        //suite.addTestSuite(TestJAXRPCDII.class);
   
           return suite;
       }