Integrated the new functor package

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137112 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2002-11-05 16:45:45 +00:00
parent 6762e2b439
commit 8ebe30ba30
1 changed files with 11 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<!-- <!--
"Lang" component of the Jakarta Commons Subproject "Lang" component of the Jakarta Commons Subproject
$Id: build.xml,v 1.4 2002/09/12 21:58:15 scolebourne Exp $ $Id: build.xml,v 1.5 2002/11/05 16:45:45 bayard Exp $
--> -->
@ -153,7 +153,7 @@
<!-- ========== Unit Test Targets ========================================= --> <!-- ========== Unit Test Targets ========================================= -->
<target name="test" depends="compile.tests, test.lang, test.exception, test.enum, test.builder" <target name="test" depends="compile.tests, test.lang, test.exception, test.enum, test.builder, test.functor"
description="Run all unit test cases"> description="Run all unit test cases">
<echo message="Running tests ..."/> <echo message="Running tests ..."/>
</target> </target>
@ -194,4 +194,13 @@
</java> </java>
</target> </target>
<target name="test.functor" depends="compile.tests">
<echo message="Running functor package tests ..."/>
<java classname="${test.runner}" fork="yes"
failonerror="${test.failonerror}">
<arg value="org.apache.commons.lang.functor.FunctorTestSuite"/>
<classpath refid="test.classpath"/>
</java>
</target>
</project> </project>