如何将 cobertura 代码覆盖率工具与 jar 文件一起使用

发布于 2024-10-28 12:50:21 字数 335 浏览 6 评论 0原文

我正在使用 cobertura 来找出我的测试套件的代码覆盖率,该套件测试通过 jar 文件捆绑的基于 java 的解决方案, cobertura cmd 行参考

我已经完成了仪器部分并获得了仪器类文件。 对于第二步,我不确定是否需要将检测的类文件重新捆绑到 jar 文件中,因为我的测试套件使用此 jar 文件,或者我可以简单地设置 CLASSPATH 变量以包含检测的类文件,同时继续使用原始 jar 文件(其中包含未检测的类文件)。

谢谢。

I'm using cobertura to find out code coverage of my test suite, which tests a java based solution bundled through a jar file, cobertura cmd line reference

I have done the instrumentation part and obtained the instrument class files.
For the second step, I'm not sure whether I need to re-bundle the instrumented class files into a jar file since my test suite uses this jar file or can I simply set my CLASSPATH variable to include the instrumented class file while continue to use original jar file (which contains the uninstrumented class files).

Thanks.

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

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

发布评论

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

评论(1

浅沫记忆 2024-11-04 12:50:21

您必须在可能包含相同编译文件的任何其他容器/文件夹之前将已检测的文件包含在类路径中。

在您的情况下,在包含检测文件的 jar 文件之前。

你不需要重新捆绑。

另一种可能性是直接检测 jar 文件。

You have to include your instrumented files in the classpath BEFORE any other containers/Folders that may include the same compiled files.

In you case before the jar file with the instrumented files.

You don't need to rebundle.

Another possibility would be to instrument the jar file directly.

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