Skip to content
Snippets Groups Projects
Commit 942915f7 authored by Haoyang Cui's avatar Haoyang Cui
Browse files

Upload New File

parent e38a85f9
No related merge requests found
<project name="Project" default="classes">
<target name="classes">
<mkdir dir="classes" />
<javac srcdir="src:test" destdir="classes"
classpath="lib/junit-4.11.jar;lib/hamcrest-core-1.3.jar"
includeantruntime="false"/>
</target>
<target name="clean">
<delete dir="classes" />
</target>
<target name="run" depends="classes">
<java classname="swen90006.machine.SimpleDriver"
classpath="classes/;lib/junit-4.11.jar;lib/hamcrest-core-1.3.jar">
</java>
</target>
<target name="partitioning" depends="classes">
<parallel threadCount="1" timeout="5000">
<sequential>
<junit printsummary="yes" fork="yes" haltonfailure="yes">
<classpath>
<pathelement path="classes/"/>
<pathelement path="lib/junit-4.11.jar"/>
<pathelement path="lib/hamcrest-core-1.3.jar"/>
</classpath>
<formatter type="plain"/>
<test name="swen90006.machine.PartitioningTests"/>
</junit>
</sequential>
</parallel>
</target>
<target name="boundary" depends="classes">
<parallel threadCount="1" timeout="5000">
<sequential>
<junit printsummary="yes" fork="yes" haltonfailure="yes">
<classpath>
<pathelement path="classes/"/>
<pathelement path="lib/junit-4.11.jar"/>
<pathelement path="lib/hamcrest-core-1.3.jar"/>
</classpath>
<formatter type="plain"/>
<test name="swen90006.machine.BoundaryTests"/>
</junit>
</sequential>
</parallel>
</target>
</project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment