0

質問が1つあります。お役に立てれば幸いです。したがって、JUnitを使用するant用のbuild.xmlファイルがあり、WindowsOSではすべて正常に動作します。しかし、build.xmlをMac OSの同じJavaプロジェクトにコピーして貼り付けると、ビルドすらできないか、テストが実行されません。

これが私のbuild.xmlです(Macで実行するためにbuild.xmlで変更したものはコメントと太字で示されています):

<project name="Brojevi" default="jar" basedir="."
xmlns:jacoco="antlib:org.jacoco.ant">

<description>
Build datoteka za projekt Brojevi.
</description>


<property name="src" location="src"/>
<property name="src.java" location="${src}/main/java"/>
<property name="src.test" location="${src}/test/java"/>
<property name="build" location="build"/>
<property name="build.classes" location="${build}/classes"/>
<property name="build.test" location="${build}/test"/>
<property name="dist" location="dist"/>


<property name="junit.home" value="d:/usr/junit-4.11" /> <!--changed path -->
<property name="jacoco.home" value="d:/usr/jacoco-0.6.3" /> <!--changed path -->

<taskdef uri="antlib:org.jacoco.ant"
resource="org/jacoco/ant/antlib.xml">
<classpath path="${jacoco.home}/lib/jacocoant.jar"/>
</taskdef>


<path id="compile.path">
<pathelement location="${build.classes}"/>
</path>


<path id="test.path">
<path refid="compile.path"/>
<pathelement location="${build.test}"/>
<fileset dir="${junit.home}">
<include name="**/*.jar"/> <!--changed path -->
</fileset>
</path>

<target name="init">

<tstamp/>

<mkdir dir="${build}"/>
<mkdir dir="${dist}"/>
</target>

<target name="compile" depends="init"
description="Prevođenje izvornog koda">
<mkdir dir="${build.classes}"/>

<javac srcdir="${src.java}" destdir="${build.classes}"
classpathref="compile.path"  <!--changed to "test.path" -->
encoding="UTF-8" debug="on"
debuglevel="lines,vars,source"
includeAntRuntime="false" />
</target>

<target name="compile-tests" depends="compile"
description="Prevođenje izvornog koda testova">
<mkdir dir="${build.test}"/>

<javac srcdir="${src.test}" destdir="${build.test}"
classpathref="test.path"
encoding="UTF-8" debug="on"
debuglevel="lines,vars,source"
includeAntRuntime="false" />
</target>

<target name="run-tests" depends="compile-tests"
description="Izvođenje definiranih testova" >
<mkdir dir="${dist}/test-reports/xml"/>
<mkdir dir="${dist}/test-reports/html"/>
<mkdir dir="${dist}/test-reports/coverage"/>


<jacoco:coverage
destfile="${dist}/test-reports/xml/jacoco.exec">
<junit printsummary="yes" haltonfailure="yes"
fork="true" forkmode="once">
<classpath refid="test.path" />

<formatter type="plain"/>
<formatter type="xml"/>

<batchtest fork="yes" todir="${dist}/test-reports/xml">
<fileset dir="${src.test}">
<include name="**/*Test*.java"/>
</fileset>
</batchtest>
</junit>
</jacoco:coverage>


<junitreport todir="${dist}/test-reports/xml">
<fileset dir="${dist}/test-reports/xml">
<include name="TEST-*.xml"/>
</fileset>
<report format="frames" todir="${dist}/test-reports/html"/>
</junitreport>


<jacoco:report>
<executiondata>
<file file="${dist}/test-reports/xml/jacoco.exec"/>
</executiondata>

<structure name="${ant.project.name}">
<classfiles>
<fileset dir="${build.classes}"/>
<fileset dir="${build.test}"/>
</classfiles>
<sourcefiles encoding="UTF-8">
<fileset dir="${src.java}"/>
<fileset dir="${src.test}"/>
</sourcefiles>
</structure>

<html destdir="${dist}/test-reports/coverage"/>

</jacoco:report>

</target>

<target name="clean"
description="Brisanje generiranog sadržaja" >

<delete dir="${build}" failonerror="false" />
<delete dir="${dist}" failonerror="false" />
</target>

</project>

私が過小評価していないのは、classpathrefを「compile.path」から「test.path」(コメントに入れた4番目で最後のもの)に変更しないと、メッセージBUILDFAILEDとそのパッケージorg.junitが表示されることです。存在しない。したがって、「test.path」を入力すると、メッセージBUILD SUCCESSFULが表示されますが、テストは実行されません(JUnitによって生成されたindex.htmlは、テストが実行されなかったことを示し、JUnitによって生成されたxmlファイルも空です)。それを機能させるには何を変更する必要がありますか?ご協力いただきありがとうございます


編集間違いを探して5日後に最終的にsolved 。もちろんバカだった。私のテストファイルは、テストディレクトリではなくソースコードと同じディレクトリにありました。evreyoneの助けに感謝し、ご迷惑をおかけして申し訳ありません。

4

1 に答える 1

0

(これはコメントだったかもしれませんが、書式設定が必要です)

debug-オプションで ant を実行します。出力をファイルにリダイレクトします。次に、 を含む文字列を含むメッセージを探します 'dropping'。これはパスに問題があることを示しており、ant は特定の jar が見つからないため無視しています。

次に、パスのハードコーディングを避けます。必要に応じて、環境変数から値を取得する か、コマンド ライン プロパティを渡すことができます。例えば-Djunit.home=/my/new/path

于 2013-03-17T05:27:22.857 に答える