質問が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の助けに感謝し、ご迷惑をおかけして申し訳ありません。