File: junit.xml

package info (click to toggle)
rdp-readseq 2.0.2-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,112 kB
  • sloc: java: 7,614; xml: 1,381; sh: 52; makefile: 18
file content (21 lines) | stat: -rw-r--r-- 635 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- Snippet to drive junit tests in deb build. Build rdp-readseq.jar first. -->
<project>
<target name="junit">

    <property name="cp" value="/usr/share/java/commons-cli.jar:/usr/share/java/commons-lang.jar:/usr/share/java/commons-io.jar:rdp-readseq.jar:/usr/share/java/junit4.jar:test"/>

    <javac srcdir="test">
	<classpath path="${cp}"/>
    </javac>

     <junit printsummary="yes" haltonfailure="yes" showoutput="yes">
	<classpath path="${cp}"/>

        <formatter type="xml"/>

        <batchtest fork="yes">
            <fileset dir="test" includes="**/*Test.java"/>
        </batchtest>
    </junit>
</target>
</project>