Adding reflect to the build.xml as per LANG-463

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@701953 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2008-10-06 06:05:32 +00:00
parent 17f1d2951f
commit 9d8846081a

View File

@ -147,6 +147,7 @@
test.exception,
test.math,
test.mutable,
test.reflect,
test.text,
test.time" description="Run all unit test cases">
<echo message="Running tests ..."/>
@ -181,6 +182,9 @@
<target name="test.mutable" depends="compile.tests">
<runTestCase classname="org.apache.commons.lang.mutable.MutableTestSuite"/>
</target>
<target name="test.reflect" depends="compile.tests">
<runTestCase classname="org.apache.commons.lang.reflect.ReflectTestSuite"/>
</target>
<target name="test.text" depends="compile.tests">
<runTestCase classname="org.apache.commons.lang.text.TextTestSuite"/>
</target>