niallp 2004/07/16 05:33:48
Modified: beanutils build.xml
Log:
Add new LazyDynaMap Test Case to the ant build script
Revision Changes Path
1.61 +18 -2 jakarta-commons/beanutils/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/beanutils/build.xml,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- build.xml 7 Jul 2004 02:21:14 -0000 1.60
+++ build.xml 16 Jul 2004 12:33:47 -0000 1.61
@@ -283,7 +283,8 @@
test.converters,
test.beanification,
test.lazy.dynaclass,
- test.lazy.dynabean
+ test.lazy.dynabean,
+ test.lazy.dynamap
"
description="Run all unit test cases">
</target>
@@ -505,6 +506,21 @@
<sysproperty key="org.apache.commons.logging.simplelog.defaultlog"
value="${test.level}"/>
<arg value="org.apache.commons.beanutils.LazyDynaBeanTestCase"/>
+ <classpath refid="test.classpath"/>
+ </java>
+ </target>
+
+ <target name="test.lazy.dynamap" depends="compile.tests">
+ <echo message="Running LazyDynaMap tests ..."/>
+ <java classname="${test.runner}" fork="yes"
+ failonerror="${test.failonerror}">
+ <sysproperty key="org.apache.commons.logging.LogFactory"
+ value="${test.factory}"/>
+ <sysproperty key="org.apache.commons.logging.Log"
+ value="${test.log}"/>
+ <sysproperty key="org.apache.commons.logging.simplelog.defaultlog"
+ value="${test.level}"/>
+ <arg value="org.apache.commons.beanutils.LazyDynaMapTestCase"/>
<classpath refid="test.classpath"/>
</java>
</target>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]