如何在 Cobertura 的 jar 中仅检测特定类?

发布于 2024-12-24 17:22:45 字数 369 浏览 1 评论 0原文

Cobertura 的文档提供了以下示例,展示了如何对 Cobertura 类路径上的 jar 文件内的类进行检测。

<cobertura-instrument todir="${instrumented.dir}">
    ...........       
    <fileset dir="../lib">
        <include name="myjar.jar" />
    </fileset>
    ...........
</cobertura-instrument>

此方法将检测指定 jar 内的所有类。

如何仅检测 jar 内指定的类文件?

Cobertura's documentation gives the following example to show how instrumentation can be done on classes inside a jar file that is on Cobertura's classpath.

<cobertura-instrument todir="${instrumented.dir}">
    ...........       
    <fileset dir="../lib">
        <include name="myjar.jar" />
    </fileset>
    ...........
</cobertura-instrument>

This approach will instrument all the classes inside the specified jar.

How can I instrument only specified class files inside the jar?

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

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

发布评论

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

评论(1

溇涏 2024-12-31 17:22:45

cobertura-instrument 任务有两个子任务,可以实现这一点(没有机会尝试):

<cobertura-instrument todir="${instrumented.dir}">
  <includeClasses regex=".*" />
  <excludeClasses regex=".*\.Test.*" />
  <!-- ... -->
</cobertura-instrument>

The cobertura-instrument task has two sub-tasks which may do the trick (didn't have the possibility to try it out):

<cobertura-instrument todir="${instrumented.dir}">
  <includeClasses regex=".*" />
  <excludeClasses regex=".*\.Test.*" />
  <!-- ... -->
</cobertura-instrument>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文