Author: bayard
Date: Tue Nov 14 20:11:55 2006
New Revision: 475111

URL: http://svn.apache.org/viewvc?view=rev&rev=475111
Log:
Bit of an odd unit test, causes trouble under maven-2. So fixing it to make it 
more like the other tests

Modified:
    
jakarta/commons/proper/lang/trunk/src/test/org/apache/commons/lang/mutable/MutableTestSuite.java

Modified: 
jakarta/commons/proper/lang/trunk/src/test/org/apache/commons/lang/mutable/MutableTestSuite.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/lang/trunk/src/test/org/apache/commons/lang/mutable/MutableTestSuite.java?view=diff&rev=475111&r1=475110&r2=475111
==============================================================================
--- 
jakarta/commons/proper/lang/trunk/src/test/org/apache/commons/lang/mutable/MutableTestSuite.java
 (original)
+++ 
jakarta/commons/proper/lang/trunk/src/test/org/apache/commons/lang/mutable/MutableTestSuite.java
 Tue Nov 14 20:11:55 2006
@@ -18,6 +18,7 @@
 package org.apache.commons.lang.mutable;
 
 import junit.framework.Test;
+import junit.framework.TestCase;
 import junit.framework.TestSuite;
 import junit.textui.TestRunner;
 
@@ -26,12 +27,16 @@
  * 
  * @version $Id$
  */
-public class MutableTestSuite {
+public class MutableTestSuite extends TestCase {
 
     public static void main(String[] args) {
         TestRunner.run(suite());
     }
 
+    public MutableTestSuite(String name) {
+        super(name);
+    }
+
     public static Test suite() {
         final TestSuite suite = new TestSuite();
 
@@ -45,9 +50,6 @@
         suite.addTest(MutableObjectTest.suite());
 
         return suite;
-    }
-
-    private MutableTestSuite() {
     }
 
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to