Skip to content
Snippets Groups Projects
Commit 5897e2f9 authored by terry-norbraten's avatar terry-norbraten
Browse files

rework test single file target

parent 7a90722b
No related branches found
No related tags found
No related merge requests found
...@@ -165,8 +165,10 @@ ...@@ -165,8 +165,10 @@
<java classpath="${run.test.classpath}" <java classpath="${run.test.classpath}"
classname="org.junit.platform.console.ConsoleLauncher" classname="org.junit.platform.console.ConsoleLauncher"
fork="true"> fork="true">
<arg value="--scan-classpath"/> <arg value="--disable-banner"/>
<arg line="--reports-dir build/test/results"/> <arg value="--fail-if-no-tests"/>
<arg value="--scan-classpath=${build.test.classes.dir}"/>
<arg value="--reports-dir=${build.test.results.dir}"/>
</java> </java>
<junitreport todir="build/test/results"> <junitreport todir="build/test/results">
<fileset dir="build/test/results"> <fileset dir="build/test/results">
...@@ -176,21 +178,17 @@ ...@@ -176,21 +178,17 @@
</junitreport> </junitreport>
</target> </target>
<target name="-pre-compile-test-single" depends="-pre-compile-test">
<property name="javac.includes" value="edu.nps.moves.dis7.SignalPdusTest"/>
<!--<property name="javac.includes" value="edu.nps.moves.dis7.AllPduRoundTripTest"/>-->
<property name="test.class" value="${javac.includes}"/>
<echo message="Compiling: ${javac.includes}"/>
</target>
<target depends="compile-test-single,-pre-test-run-single" <target depends="compile-test-single,-pre-test-run-single"
description="Run single unit test." description="Run single unit test."
name="-do-test-run-single"> name="-do-test-run-single">
<echo message="Testing: ${javac.includes}"/> <echo message="Testing: ${test.class}"/>
<java classpath="${run.test.classpath}" <java classpath="${run.test.classpath}"
classname="org.junit.platform.console.ConsoleLauncher" classname="org.junit.platform.console.ConsoleLauncher"
fork="true"> fork="true">
<arg line="--select-class=${javac.includes}"/> <arg value="--disable-banner"/>
<arg value="--fail-if-no-tests"/>
<arg line="-c=${test.class}"/>
<!--<arg value="-h"/>-->
</java> </java>
</target> </target>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment