Removing EnumTests
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@751351 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
69d0399fcd
commit
76fdbaf1a4
|
@ -142,7 +142,6 @@
|
|||
compile.tests,
|
||||
test.lang,
|
||||
test.builder,
|
||||
test.enums,
|
||||
test.exception,
|
||||
test.math,
|
||||
test.mutable,
|
||||
|
@ -166,9 +165,6 @@
|
|||
<target name="test.builder" depends="compile.tests">
|
||||
<runTestCase classname="org.apache.commons.lang.builder.BuilderTestSuite"/>
|
||||
</target>
|
||||
<target name="test.enums" depends="compile.tests">
|
||||
<runTestCase classname="org.apache.commons.lang.enums.EnumTestSuite"/>
|
||||
</target>
|
||||
<target name="test.exception" depends="compile.tests">
|
||||
<runTestCase classname="org.apache.commons.lang.exception.ExceptionTestSuite"/>
|
||||
</target>
|
||||
|
|
|
@ -22,7 +22,6 @@ import junit.framework.TestSuite;
|
|||
import junit.textui.TestRunner;
|
||||
|
||||
import org.apache.commons.lang.builder.BuilderTestSuite;
|
||||
import org.apache.commons.lang.enums.EnumTestSuite;
|
||||
import org.apache.commons.lang.exception.ExceptionTestSuite;
|
||||
import org.apache.commons.lang.math.MathTestSuite;
|
||||
import org.apache.commons.lang.mutable.MutableTestSuite;
|
||||
|
@ -60,7 +59,6 @@ public class AllLangTestSuite extends TestCase {
|
|||
suite.setName("Commons-Lang (all) Tests");
|
||||
suite.addTest(LangTestSuite.suite());
|
||||
suite.addTest(BuilderTestSuite.suite());
|
||||
suite.addTest(EnumTestSuite.suite());
|
||||
suite.addTest(ExceptionTestSuite.suite());
|
||||
suite.addTest(MathTestSuite.suite());
|
||||
suite.addTest(MutableTestSuite.suite());
|
||||
|
|
Loading…
Reference in New Issue