[Httpunit-commit] CVS: httpunit/src/com/meterware/servletunit JUnitServlet.java,1.1,1.2
Brought to you by:
russgold
From: Russell G. <rus...@us...> - 2002-08-30 21:29:39
|
Update of /cvsroot/httpunit/httpunit/src/com/meterware/servletunit In directory usw-pr-cvs1:/tmp/cvs-serv3312/src/com/meterware/servletunit Modified Files: JUnitServlet.java Log Message: Accomodate changes to JUnit 3.8 Index: JUnitServlet.java =================================================================== RCS file: /cvsroot/httpunit/httpunit/src/com/meterware/servletunit/JUnitServlet.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- JUnitServlet.java 3 Dec 2001 19:14:59 -0000 1.1 +++ JUnitServlet.java 30 Aug 2002 21:29:36 -0000 1.2 @@ -115,6 +115,18 @@ } + public void testStarted( String s ) { + } + + + public void testEnded( String s ) { + } + + + public void testFailed( int i, Test test, Throwable throwable ) { + } + + /** * Always use the StandardTestSuiteLoader. Overridden from * BaseTestRunner. |