Hi,
I have a lot of jars with JUnit test cases.
How I may run them.
What is wrong in this approach:
<target name="ExecuteComponentTest" depends="PrepareComponent">
<junit printsummary="yes">
<classpath>
<fileset dir="${env.COMPONENTS_JARS_LOCATION}">
<include name="**/*.jar"/>
</fileset>
</classpath>
<formatter type="plain"/>
<batchtest fork="yes" todir="${env.ALL_TESTS_REPORT_DIR}">
<fileset dir="${env.ALL_TESTS_BUILD_DIR}">
<include name="**/*.jar"/>
</fileset>
</batchtest>
</junit>
</target>
Thank you
-
Denis
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]