-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.xml
More file actions
56 lines (51 loc) · 1.8 KB
/
test.xml
File metadata and controls
56 lines (51 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<project name="Rectangle-Test" default="main" basedir=".">
<description>
simple example build file
</description>
<!-- set global properties for this build -->
<property environment="env"/>
<property name="src.dir" location="src"/>
<property name="build.dir" location="bin"/>
<property name="dist.dir" location="dist"/>
<property name="docs.dir" location="docs"/>
<property name="report.dir" location="reports"/>
<path id="class.path">
<pathelement location="./lib/junit-4.10.jar" />
<pathelement location="${build.dir}" />
</path>
<!-- Deletes the existing build, docs and dist directory-->
<target name="clean">
<!-- Create the time stamp -->
<tstamp/>
<delete dir="${build.dir}" />
<delete dir="${report.dir}" />
</target>
<!-- Creates the build, docs and dist directory-->
<target name="makedir" depends="clean">
<!-- Create the time stamp -->
<tstamp/>
<mkdir dir="${build.dir}" />
<mkdir dir="${report.dir}" />
</target>
<!-- Compiles the java code (including the usage of library for JUnit)-->
<target name="compile" depends="makedir"
description="compile the source">
<!-- Compile the java code from ${src} into ${build} -->
<javac srcdir="${src.dir}" destdir="${build.dir}">
<classpath refid="class.path" />
</javac>
</target>
<!-- Creates the deployable jar file -->
<target name="test" depends="clean, makedir, compile"
description="test the build">
<junit printsummary="yes" fork="true">
<classpath refid="class.path" />
<test name="RectangleTest" todir="${report.dir}" outfile="result">
<formatter type="xml" />
</test>
</junit>
</target>
<target name="main" depends="test">
<description>Main target</description>
</target>
</project>