-
Notifications
You must be signed in to change notification settings - Fork 14
/
test.xml
30 lines (26 loc) · 925 Bytes
/
test.xml
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
<project default="test">
<property name="lib" location="lib"/>
<property name="bin" location="bin/eclipse"/>
<path id="classpath.test">
<pathelement location="${lib}/test/junit-4.10.jar"/>
<pathelement location="${lib}/test/scalatest_2.10.0-2.0.M5.jar"/>
<pathelement location="${lib}/scala/scala-library-2.10.0.jar"/>
<pathelement location="${lib}/commons-lang3-3.1.jar"/>
<pathelement location="${lib}/grizzled-slf4j_2.10-1.0.1.jar"/>
<pathelement location="${lib}/slf4j-api-1.7.2.jar"/>
<pathelement location="${lib}/slf4j-jdk14-1.7.2.jar"/>
<pathelement location="${bin}"/>
</path>
<target name="test">
<junit>
<classpath refid="classpath.test"/>
<formatter type="brief" usefile="false"/>
<batchtest fork="yes">
<fileset dir="${bin}">
<include name="**/*Test.class"/>
<exclude name="**/Abstract*.class"/>
</fileset>
</batchtest>
</junit>
</target>
</project>