如何在 Cobertura 的 jar 中仅检测特定类?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
cobertura-instrument 任务有两个子任务,可以实现这一点(没有机会尝试):
The
cobertura-instrument
task has two sub-tasks which may do the trick (didn't have the possibility to try it out):