2

テストケースレポートを生成するために、AntでJUnitReportを使用しています。ビルドファイルは正常に実行されますが、空の値が表示されています。スタイルシートのように、フレーム化された出力が

  • テスト0
  • 失敗0
  • 成功率NaN
  • 時間0.00

これが私のbuild.xmlファイルです

<project name="JunitTest" default="test" basedir="."> 
<property name="testdir" location="./bin" /> 
<property name="srcdir" location="." /> 
<property name="full-compile" value="true" /> 
<property name="test.reports" value="./reports" />

<path id="classpath.base"/>
<path id="classpath.test">

<path id="JUnit 4.libraryclasspath">
      <pathelement location="./lib/junit-4.1.jar"/>
      <pathelement location=".lib/hamcrest-core-1.3.jar"/>
</path>

<pathelement location="${testdir}" />
<pathelement location="${srcdir}" />

<path refid="classpath.base" />

</path> 

<target name="clean" >
    <echo> CLEAN </echo>
    <delete verbose="${full-compile}"> 
        <fileset dir="${testdir}" includes="**/*.class" />
    </delete> 
</target>

<target name="compile" depends="clean">
    <echo> COMPILING </echo>
    <javac srcdir="${srcdir}" destdir="${testdir}" verbose="${full-compile}" >
        <classpath refid="classpath.test"/>
        <classpath refid="JUnit 4.libraryclasspath" />
    </javac>
</target>

<target name="test" depends="compile" >

    <junit printsummary="true" showoutput="true">
        <classpath refid="classpath.test" />
        <classpath refid="JUnit 4.libraryclasspath" />
        <formatter type="plain"  />
        <formatter type="plain"  />

        <test name="com.megacorp.projx.JUnit.AllTests" />
    </junit>

    <junitreport todir="${test.reports}" >
        <fileset dir="${test.reports}">
            <include name="TEST-*.xml" />
        </fileset>
        <report todir="${test.reports}"  format="frames" />
    </junitreport>
    <record name="${test.reports}/test-output.txt" action="start"/>
</target>

4

1 に答える 1

1

test ブロックに todir 属性を設定してください

<test name="com.megacorp.projx.JUnit.AllTests"  todir="${test.reports}" />

junit ant タスクを学習している場合は、batchtestタスクを確認してください。フィルターに基づいてテストをピックアップできます。

于 2013-02-08T11:39:04.547 に答える