通过 ant 在 cobertura 中故障线路覆盖率(100%)?

发布于 2024-12-08 00:22:44 字数 55 浏览 1 评论 0原文

我正在使用 cobertura,但它给了我 100% 的线路覆盖率。它只显示那些被执行的代码行?

I'm using cobertura, but it is giving me 100% line coverage. It is showing only those lines of code which are executed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

青瓷清茶倾城歌 2024-12-15 00:22:44

使用报告任务时,您需要包含源(或确保包含它们):

<cobertura-report format="html" destdir="${coveragereport.dir}" srcdir="${src.dir}" />

参考:cobertura-anttask

否则,cobertura 无法知道实际存在多少行/类,并将报告 100% 覆盖率。

You need to include the sources (or make sure, that they are included), when you use the report task:

<cobertura-report format="html" destdir="${coveragereport.dir}" srcdir="${src.dir}" />

Reference: cobertura-anttask

Otherwise cobertura cannot know, how many lines/classes actually exist and will report 100% coverage.

何其悲哀 2024-12-15 00:22:44

在运行测试之前尝试删除文件cobertura.ser

https://github.com/cobertura/cobertura/wiki/FAQ

Try removing the file cobertura.ser before running the tests.

https://github.com/cobertura/cobertura/wiki/FAQ

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文