Hi all,
I have become a bit believer in test driven development. I use CFUnit to do my
test cases from the browser. I want to run the test in ANT but when I run the ANT
script on the command line the CFUnit error is output to the command line. How
can I get the CFUnit output in JUnitReport? Is it possible? I notice that MXUnit
can do it.
here is my ANT script:
<taskdef name="CFUnit"
classname="net.sourceforge.cfunit.ant.CFUnit"
classpath="${cftest_classpath}"
/>
<target name="cftest">
<record name="CFtestlog.txt" action="start" loglevel="verbose" />
<CFUnit testcase="${approot}/tests/testFunctions.cfc" verbose="true" />
<record name="CFtestlog.txt" action="stop"/>
</target>
Thanks for your help