Xml文件  |  22行  |  560 B

<project name="conform" default="test">

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

</project>