[Httpunit-commit] CVS: httpunit/test/com/meterware/servletunit ConfigTest.java,1.2,1.3
Brought to you by:
russgold
From: Russell G. <rus...@us...> - 2002-05-20 16:00:46
|
Update of /cvsroot/httpunit/httpunit/test/com/meterware/servletunit In directory usw-pr-cvs1:/tmp/cvs-serv31967/test/com/meterware/servletunit Modified Files: ConfigTest.java Log Message: Removed unused fields, methods, and imports Index: ConfigTest.java =================================================================== RCS file: /cvsroot/httpunit/httpunit/test/com/meterware/servletunit/ConfigTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ConfigTest.java 18 Jun 2001 20:21:30 -0000 1.2 +++ ConfigTest.java 20 May 2002 16:00:44 -0000 1.3 @@ -19,16 +19,21 @@ * DEALINGS IN THE SOFTWARE. * *******************************************************************************************************************/ -import java.io.*; -import java.net.HttpURLConnection; -import javax.servlet.*; -import javax.servlet.http.*; +import com.meterware.httpunit.WebClient; +import com.meterware.httpunit.WebResponse; + +import java.io.IOException; +import java.io.PrintWriter; + +import javax.servlet.ServletConfig; +import javax.servlet.ServletException; +import javax.servlet.http.HttpServlet; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; - -import com.meterware.httpunit.*; /** * Tests support for the servlet configuration. |