在 Cobertura 中,我在哪里可以找到单个摘要承保范围编号?

发布于 2024-10-13 01:01:06 字数 167 浏览 7 评论 0原文

我在代码库上运行 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 技术交流群。

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

发布评论

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

评论(2

谁对谁错谁最难过 2024-10-20 01:01:06

如果您查看示例报告,则会在“所有包”行中报告总指标。

If you look at the sample report, the total metrics are reported in the "All Packages" row.

小…红帽 2024-10-20 01:01:06

您可以使用 format="summaryXml" 属性

<target name="summary-coverage-report">
    <cobertura-report srcdir="${src.dir}" destdir="${coverage.summaryxml.dir}" format="summaryXml" />
</target>

查看示例 此处

You can use the format="summaryXml" attribute for this

<target name="summary-coverage-report">
    <cobertura-report srcdir="${src.dir}" destdir="${coverage.summaryxml.dir}" format="summaryXml" />
</target>

See the example here.

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