You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cactus-dev@jakarta.apache.org by vm...@apache.org on 2002/01/10 20:54:44 UTC

cvs commit: jakarta-cactus/src/framework/share/org/apache/cactus AbstractTestCase.java

vmassol     02/01/10 11:54:44

  Modified:    src/framework/share/org/apache/cactus AbstractTestCase.java
  Log:
  explicit imports
  
  Revision  Changes    Path
  1.19      +17 -13    jakarta-cactus/src/framework/share/org/apache/cactus/AbstractTestCase.java
  
  Index: AbstractTestCase.java
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/src/framework/share/org/apache/cactus/AbstractTestCase.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- AbstractTestCase.java	1 Dec 2001 23:22:44 -0000	1.18
  +++ AbstractTestCase.java	10 Jan 2002 19:54:44 -0000	1.19
  @@ -53,17 +53,21 @@
    */
   package org.apache.cactus;
   
  -import java.lang.reflect.*;
  -import javax.servlet.*;
  -import javax.servlet.http.*;
  -import java.net.*;
  -
  -import junit.framework.*;
  -
  -import org.apache.cactus.client.*;
  -import org.apache.cactus.server.*;
  -import org.apache.cactus.util.log.*;
  -import org.apache.cactus.util.*;
  +import java.lang.reflect.Modifier;
  +import java.lang.reflect.Method;
  +import java.lang.reflect.InvocationTargetException;
  +import java.net.HttpURLConnection;
  +import java.net.URLConnection;
  +
  +import junit.framework.TestCase;
  +
  +import org.apache.cactus.util.log.Log;
  +import org.apache.cactus.util.log.LogService;
  +import org.apache.cactus.util.JUnitVersionHelper;
  +import org.apache.cactus.util.ChainedRuntimeException;
  +import org.apache.cactus.client.ClientConfigurationChecker;
  +import org.apache.cactus.client.AbstractHttpClient;
  +
   
   /**
    * Abstract class that specific test cases (<code>ServletTestCase</code>,
  @@ -72,7 +76,7 @@
    *
    * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a>
    *
  - * @version $Id: AbstractTestCase.java,v 1.18 2001/12/01 23:22:44 vmassol Exp $
  + * @version $Id: AbstractTestCase.java,v 1.19 2002/01/10 19:54:44 vmassol Exp $
    */
   public abstract class AbstractTestCase extends TestCase
   {
  @@ -439,7 +443,7 @@
           // Call the end method
           callEndMethod(request, connection);
   
  -        // Close the intput stream (just in the case the user has not done it
  +        // Close the input stream (just in the case the user has not done it
           // in it's endXXX method (or if he has no endXXX method) ....
           connection.getInputStream().close();
        }
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>