通过 ant 在 cobertura 中故障线路覆盖率(100%)?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用报告任务时,您需要包含源(或确保包含它们):
参考:cobertura-anttask
否则,cobertura 无法知道实际存在多少行/类,并将报告 100% 覆盖率。
You need to include the sources (or make sure, that they are included), when you use the report task:
Reference: cobertura-anttask
Otherwise cobertura cannot know, how many lines/classes actually exist and will report 100% coverage.
在运行测试之前尝试删除文件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