<target name="test" depends="build" description="Executer tests avec JUnit">
<junit fork="yes" haltonerror="true" printsummary="on">
<!-- <sysproperty key="java.library.path" value="${workspace_loc:Workspace1}/native/dll;${workspace_loc:Workspace2}/native/Exe"/> -->
<formatter type="plain" usefile="false" />
<!--<jvmarg value="-Djava.library.path=${workspace_loc:Workspace1}/native/dll;${workspace_loc:Workspace2}/native/Exe" /> -->
<test name="${junit.entry}" haltonerror="true" />
<classpath refid="project.classpath" />
<classpath>
<pathelement location="${ant.bin}" />
<pathelement location="${junit_path}" />
<!-- donne les ressources du project -->
<pathelement location="${basedir}/../resources/" />
</classpath>
</junit>
</target> |