The build.xml invoked the deprecated .enum. test suite but not the new .enums. test suite. Added .enums. invocation on top of .enum.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@178764 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2005-05-27 07:26:14 +00:00
parent 015b77e3ea
commit a1d8a35b24
1 changed files with 1 additions and 0 deletions

View File

@ -178,6 +178,7 @@ limitations under the License.
<target name="test.enum" depends="compile.tests">
<echo message="Running enum package tests ..."/>
<java classname="${test.runner}" fork="${test.fork}" failonerror="${test.failonerror}">
<arg value="org.apache.commons.lang.enums.EnumTestSuite"/>
<arg value="org.apache.commons.lang.enum.EnumTestSuite"/>
<classpath refid="test.classpath"/>
</java>