Removed UtilTestSuite

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137633 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2003-08-19 02:38:56 +00:00
parent 5c40d53bf0
commit f5a4e148c5
1 changed files with 1 additions and 3 deletions

View File

@ -63,13 +63,12 @@ import org.apache.commons.lang.enum.EnumTestSuite;
import org.apache.commons.lang.exception.ExceptionTestSuite;
import org.apache.commons.lang.math.MathTestSuite;
import org.apache.commons.lang.time.TimeTestSuite;
import org.apache.commons.lang.util.UtilTestSuite;
/**
* Test suite for [lang].
*
* @author Stephen Colebourne
* @version $Id: AllLangTestSuite.java,v 1.2 2003/08/18 02:22:25 bayard Exp $
* @version $Id: AllLangTestSuite.java,v 1.3 2003/08/19 02:38:56 bayard Exp $
*/
public class AllLangTestSuite extends TestCase {
@ -99,7 +98,6 @@ public class AllLangTestSuite extends TestCase {
suite.addTest(ExceptionTestSuite.suite());
suite.addTest(MathTestSuite.suite());
suite.addTest(TimeTestSuite.suite());
suite.addTest(UtilTestSuite.suite());
return suite;
}
}