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

Delete build.xml

parent f0239e99
No related branches found
No related tags found
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">
<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>
</target>
<target name="boundary" depends="classes">
<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>
</target>
</project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment