我是 JaCoCo 的新手,并试图弄清楚为什么我生成的 html 报告没有与我的源链接。
覆盖数字看起来是正确的,我可以浏览到每个类,然后是每个方法,但我看不到源。我在 sourcefiles 标签中尝试了许多不同的东西,但没有任何效果。其他人遇到过这个问题吗?这是我的 ant 脚本的片段:
...
<test name="test.fw.UITestSuite" todir="${logdir}"/>
</junit>
</jacoco:coverage>
<fail if="TestFailed" status="1" message="UI junit test failure detected"/>
<echo message="${src}"/>
<jacoco:report>
<executiondata>
<file file="jacoco.exec"/>
</executiondata>
<structure name="UI">
<classfiles>
<fileset dir="${build}/fw"/>
</classfiles>
<sourcefiles encoding="UTF-8">
<fileset dir="fw" includes="**./*.java"/>
</sourcefiles>
</structure>
<html destdir="report"/>
</jacoco:report>
</target>
...