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:
Henri Yandell 2009-03-08 01:57:50 +00:00
parent 69d0399fcd
commit 76fdbaf1a4
2 changed files with 0 additions and 6 deletions

View File

@ -142,7 +142,6 @@
compile.tests, compile.tests,
test.lang, test.lang,
test.builder, test.builder,
test.enums,
test.exception, test.exception,
test.math, test.math,
test.mutable, test.mutable,
@ -166,9 +165,6 @@
<target name="test.builder" depends="compile.tests"> <target name="test.builder" depends="compile.tests">
<runTestCase classname="org.apache.commons.lang.builder.BuilderTestSuite"/> <runTestCase classname="org.apache.commons.lang.builder.BuilderTestSuite"/>
</target> </target>
<target name="test.enums" depends="compile.tests">
<runTestCase classname="org.apache.commons.lang.enums.EnumTestSuite"/>
</target>
<target name="test.exception" depends="compile.tests"> <target name="test.exception" depends="compile.tests">
<runTestCase classname="org.apache.commons.lang.exception.ExceptionTestSuite"/> <runTestCase classname="org.apache.commons.lang.exception.ExceptionTestSuite"/>
</target> </target>

View File

@ -22,7 +22,6 @@
import junit.textui.TestRunner; import junit.textui.TestRunner;
import org.apache.commons.lang.builder.BuilderTestSuite; 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.exception.ExceptionTestSuite;
import org.apache.commons.lang.math.MathTestSuite; import org.apache.commons.lang.math.MathTestSuite;
import org.apache.commons.lang.mutable.MutableTestSuite; import org.apache.commons.lang.mutable.MutableTestSuite;
@ -60,7 +59,6 @@ public static Test suite() {
suite.setName("Commons-Lang (all) Tests"); suite.setName("Commons-Lang (all) Tests");
suite.addTest(LangTestSuite.suite()); suite.addTest(LangTestSuite.suite());
suite.addTest(BuilderTestSuite.suite()); suite.addTest(BuilderTestSuite.suite());
suite.addTest(EnumTestSuite.suite());
suite.addTest(ExceptionTestSuite.suite()); suite.addTest(ExceptionTestSuite.suite());
suite.addTest(MathTestSuite.suite()); suite.addTest(MathTestSuite.suite());
suite.addTest(MutableTestSuite.suite()); suite.addTest(MutableTestSuite.suite());