如何将 cobertura 代码覆盖率工具与 jar 文件一起使用
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在可能包含相同编译文件的任何其他容器/文件夹之前将已检测的文件包含在类路径中。
在您的情况下,在包含检测文件的 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.