在 Cobertura 中,我在哪里可以找到单个摘要承保范围编号?
我在代码库上运行 Cobertura,并按类、行和分支获取覆盖率数字。
除此之外,我正在寻找一个汇总数字,它可以告诉我整个代码库的覆盖范围。这当然还不够;详细的报告是必不可少的。但是,只有一个数字就可以为我们提供一个可以不断改进的指标。
我在报告中没有看到这样的数字。我在哪里可以找到它?
I run Cobertura on my codebase and get coverage numbers by the class, line, and branch.
Besides this, I am looking for a single summary number which tells me the coverage for my whole codebase. That's not enough of course; the detailed reports are essential. But having a single number gives us a metric which we can continually improve.
I don't see such a number in the reports. Where can I find it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您查看示例报告,则会在“所有包”行中报告总指标。
If you look at the sample report, the total metrics are reported in the "All Packages" row.
您可以使用
format="summaryXml"
属性查看示例 此处。
You can use the
format="summaryXml"
attribute for thisSee the example here.