Index: beanutils/build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/beanutils/build.xml,v
retrieving revision 1.17
diff -u -r1.17 build.xml
--- beanutils/build.xml	2001/09/22 17:54:55	1.17
+++ beanutils/build.xml	2001/12/11 22:16:43
@@ -208,7 +208,8 @@
 
   <target name="test"  depends="compile.tests,
                                 test.property,
-                                test.bean
+                                test.bean,
+                                test.method
                                "
    description="Run all unit test cases">
   </target>
@@ -232,7 +233,14 @@
     </java>
   </target>
 
-
+ <target name="test.method">
+    <echo message="Running MethodUtils tests ..."/>
+    <java classname="${test.runner}" fork="yes"
+        failonerror="${test.failonerror}">
+      <arg value="org.apache.commons.beanutils.MethodUtilsTestCase"/>
+      <classpath refid="test.classpath"/>
+    </java>
+  </target>
 
 
 </project>
