我有一个问题,如果您能提供帮助,我将不胜感激。所以,我有使用 JUnit 的 ant 的 build.xml 文件,并且在 Windows 操作系统上一切正常。但是,如果我将 build.xml 复制/粘贴到 Mac OS 上的同一个 java 项目中,它甚至无法构建或无法运行测试。
这是我的 build.xml(我在 build.xml 中为在 Mac 上运行而更改的内容以注释和粗体显示):
<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”(我发表评论的第四件事也是最后一件事),那么我会收到消息 BUILD FAILED 和那个包 org.junit不存在。所以如果我输入“test.path”,我会收到消息 BUILD SUCCESSFUL,但没有完成任何测试(JUnit 生成的 index.html 表示没有完成任何测试,并且 JUnit 生成的 xml 文件也是空的)。我必须改变什么才能让它工作?谢谢你的帮助
编辑在寻找错误 5 天后终于解决了。当然,这是愚蠢的。我的测试文件与源代码位于同一目录中,而不是在测试目录中。感谢 evreyone 的帮助,很抱歉打扰您。