我正在尝试将codecoverage与jacoco集成到由ant任务启动的junit测试中。事实上jacoco强迫我分叉我的junit它给了我一些问题,因为我的类路径很长而且fork崩溃了。 我正在使用manifestclasspath在jar文件中添加我的类路径,并将我的新jar作为参数发送到VM,但它不起作用。我的测试运行但它们都返回ClassNotFoundException。 这是我如何配置我的蚂蚁过程的一个基础。
<path refid="bin.classpath"/>
bin.classpath包含我需要放入.jar文件的所有路径。
<target name="run-unit-tests" depends="init" description="Runs all the unit tests">
<taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml">
<classpath path="jacocoant.jar" />
</taskdef>
<manifestclasspath property="binjar" jarfile="binManifest.jar">
<classpath refid="bin.classpath" />
</manifestclasspath>
<jar destfile="manifestJars/binManifest.jar">
<manifest>
<attribute name="Class-Path" value="${binjar}" />
</manifest>
</jar>
<jacoco:coverage destfile="results/jacoco.exec" xmlns:jacoco="antlib:org.jacoco.ant">
<junit fork="true" reloading="false" showoutput="true">
<classpath>
<pathelement path="${projects.dir}/AntProject/manifestJars/binManifest.jar" />
</classpath>
<batchtest todir="${test.data.dir}" fork="true">
<fileset dir="${projects.dir}/ProjectFolder1/src" />
<fileset dir="${projects.dir}/ProjectFolder2/src" />
</batchtest>
</junit>
</jacoco:coverage>
</target>
如果我在运行ant-task时查看控制台日志,我可以看到我的新.jar文件是如何发送的:
-classpath''C:\Users\XXX\Project\AntProject\manifestJars\binManifest.jar;
如果我打开创建的binManifest.jar,我会找到一个MANIFEST.MF文件,其中所有路径都在Class-Path属性中,格式为:../../Class1 / bin ../../Class2/bin。 ./../ClassN/bin。但由于某种原因,我的所有测试都失败了,因为找不到我的课程。我错过了什么?感谢。
答案 0 :(得分:1)
让我们从没有JaCoCo开始 - 下面是使用junit fork="true"
和manifestclasspath
的{{3}}。
main/Example.java
:
class Example {
public static void sayHello() {
System.out.println();
}
}
test/ExampleTest.java
:
public class ExampleTest {
@org.junit.Test
public void test() {
Example.sayHello();
}
}
build.xml
:
<project xmlns:jacoco="antlib:org.jacoco.ant" default="build">
<target name="build">
<delete dir="bin" />
<mkdir dir="bin/main-classes" />
<mkdir dir="bin/test-classes" />
<javac target="1.5" debug="true" destdir="bin/main-classes">
<src path="main" />
</javac>
<javac target="1.5" debug="true" destdir="bin/test-classes">
<src path="test" />
<classpath>
<pathelement path="bin/main-classes"/>
<pathelement path="lib/junit-4.12.jar"/>
<!-- otherwise "java.lang.NoClassDefFoundError: org/hamcrest/SelfDescribing" -->
<pathelement path="lib/hamcrest-core-1.3.jar"/>
</classpath>
</javac>
<manifestclasspath property="binjar" jarfile="bin/manifest.jar">
<classpath>
<pathelement path="bin/main-classes"/>
<pathelement path="bin/test-classes"/>
<pathelement path="lib/junit-4.12.jar"/>
<!-- otherwise "java.lang.NoClassDefFoundError: org/hamcrest/SelfDescribing" -->
<pathelement path="lib/hamcrest-core-1.3.jar"/>
</classpath>
</manifestclasspath>
<jar destfile="bin/manifest.jar">
<manifest>
<attribute name="Class-Path" value="${binjar}" />
</manifest>
</jar>
<junit fork="true" showoutput="true">
<formatter type="brief" usefile="false" />
<classpath>
<pathelement path="bin/manifest.jar" />
</classpath>
<batchtest>
<fileset dir="test" includes="**/*Test.java" />
</batchtest>
</junit>
</target>
</project>
根据Junit的要求,注意lib/hamcrest-core-1.3.jar
除junit-4.12.jar
之外“ant
- 请参阅complete and verifiable example
让我们通过执行<taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml">
<classpath path="jacocoant.jar" />
</taskdef>
确认它无异常。
通过添加
添加JaCoCo之后<jacoco:coverage destfile="bin/jacoco.exec" xmlns:jacoco="antlib:org.jacoco.ant">
...
</jacoco:coverage>
开头,
junit
围绕<jacoco:report>
<executiondata>
<file file="bin/jacoco.exec"/>
</executiondata>
<structure name="JaCoCo Ant Example">
<classfiles>
<fileset dir="bin/main-classes"/>
</classfiles>
<sourcefiles encoding="UTF-8">
<fileset dir="main"/>
</sourcefiles>
</structure>
<html destdir="bin/report"/>
</jacoco:report>
,最后
ant
到最后并不是什么大不了的事。执行bin/report
将在目录If ChkBx = 1 Then
Cells(r, g) = "NO"
Cells(r, h) = "NO"
Else
Cells(r, g) = "YES"
Cells(r, h) = ""
End If
中生成报告。