File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 3
3
<property environment =" ENV" />
4
4
5
5
<property name =" src.dir" value =" src" />
6
- <property name =" tests.dir" value =" tests" />
6
+ <property name =" tests.dir" value =" ${ src.dir } / tests" />
7
7
<property name =" build.dir" value =" build" />
8
8
<property name =" dependencies.dir" value =" deps" />
9
9
<property name =" tests.report.dir" value =" ${ build.dir } /tests" />
18
18
<delete dir =" ${ build.dir } " />
19
19
</target >
20
20
21
- <target name =" build " depends = " clean " >
21
+ <target name =" compile " >
22
22
<mkdir dir =" ${ build.dir } " />
23
23
<mkdir dir =" ${ tests.report.dir } " />
24
24
<javac srcdir =" ${ src.dir } " destdir =" ${ build.dir } " debug =" on" includeantruntime =" false" >
25
25
<classpath refid =" junit.class.path" />
26
26
</javac >
27
27
</target >
28
28
29
- <target name =" test" depends =" build " >
29
+ <target name =" test" depends =" compile " >
30
30
<junit fork =" true" haltonfailure =" yes" >
31
31
<classpath refid =" junit.class.path" />
32
32
<batchtest todir =" ${ tests.report.dir } " >
33
33
<formatter type =" brief" usefile =" false" />
34
- <fileset dir =" ${ tests .dir} " >
35
- <include name =" *.java" />
34
+ <fileset dir =" ${ src .dir} " >
35
+ <include name =" **/*Test* .java" />
36
36
</fileset >
37
37
</batchtest >
38
38
</junit >
You can’t perform that action at this time.
0 commit comments