File: svuidadder.xml

package info (click to toggle)
asm2 2.2.3-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 2,548 kB
  • ctags: 2,786
  • sloc: java: 22,655; xml: 1,218; makefile: 32
file content (18 lines) | stat: -rw-r--r-- 524 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<project name="conform" default="test">

  <target name="test">
    <junit fork="yes" 
           printsummary="yes"
           errorproperty="test.failed"
           failureproperty="test.failed">
      <batchtest fork="yes" todir="${out.test}/reports">
        <fileset dir="${test}/conform">
          <include name="**/SerialVersionUIDAdderTest.java"/>
        </fileset>
      </batchtest>
      <formatter type="xml"/>
      <classpath refid="test.classpath"/>
    </junit>  
  </target>

</project>