如何从 Clover 覆盖率报告中排除代码?

发布于 2024-12-06 20:40:59 字数 193 浏览 3 评论 0原文

有没有办法隐藏类或方法,使其不被包含在 Clover 代码覆盖率报告中?我们在同一目录中拥有一些概念验证代码以及生产质量代码。此概念代码包含在代码覆盖率报告中,这扭曲了我们的数字。我们想知道是否可以对它们进行注释或标记,以便 Clover 在生成报告时忽略它们。

-- 更新 --

针对自定义注释使用 methodContext 怎么样?

Is there any way to hide classes or methods from being included in the Clover code coverage report? We have some proof of concept code along side production quality code in the same directories. This concept code is being included in the code coverage reports which is skewing our numbers. We were wondering if we could annotate or mark them in such a way that Clover will ignore them when generating the report.

-- Update --

What about using a methodContext against a custom annotation?

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

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

发布评论

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

评论(1

我家小可爱 2024-12-13 20:40:59

我您正在使用 Clover 作为Maven插件,可以配置排除的类。

<configuration>
  <excludes>
    <exclude>**/*Dull.java</exclude>
  </excludes>
</configuration>

I you are using Clover as a Maven plugin, you can configure excluded classes.

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