vmassol 01/08/25 04:16:40
Modified: cactus/src/test/share/org/apache/commons/cactus
TestWebResponse.java
Log:
forgot to initialize logs
Revision Changes Path
1.2 +7 -1
jakarta-commons/cactus/src/test/share/org/apache/commons/cactus/TestWebResponse.java
Index: TestWebResponse.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/cactus/src/test/share/org/apache/commons/cactus/TestWebResponse.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TestWebResponse.java 2001/08/25 11:01:22 1.1
+++ TestWebResponse.java 2001/08/25 11:16:40 1.2
@@ -58,16 +58,22 @@
import junit.framework.*;
import org.apache.commons.cactus.*;
import org.apache.commons.cactus.util.*;
+import org.apache.commons.cactus.util.log.*;
/**
* Unit tests of the <code>WebResponse</code> class.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Vincent Massol</a>
*
- * @version $Id: TestWebResponse.java,v 1.1 2001/08/25 11:01:22 vmassol Exp $
+ * @version $Id: TestWebResponse.java,v 1.2 2001/08/25 11:16:40 vmassol Exp $
*/
public class TestWebResponse extends TestCase
{
+ // Initialize logging system first
+ static {
+ LogService.getInstance().init(null);
+ }
+
/**
* Defines the testcase name for JUnit.
*