You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Bret Kumler <bk...@firstam.com> on 2003/05/14 00:48:55 UTC

Question about ant & JFunc

I was wondering if anyone knows how to use http://jfunc.sourceforge.net with
ant?

I've found this so far.

<target name="jfunctest" depends="build">
                           <java
classname="junit.extensions.jfunc.textui.JFuncRunner" fork="yes">
                           <!--jvmarg value="-noverify" /-->
                           <arg value="--color"/>
                           <arg
value="junit.extensions.jfunc.tests.AllTests" />
                           <classpath>
                                   <pathelement location="build" />
                                   <pathelement location="lib/junit.jar" />
                                   <pathelement location="lib/jcfe.jar" />
                                   <pathelement location="lib/bcel.jar" />
                           </classpath>
                   </java>
           </target>


Will this run all the JFunc tests & generate a report like JUNITREPORT?

Thanks,

Bret