将 Jacoco 与 Pax-Exam 结合使用
我目前正在开发一个基于 OSGi 模型构建的应用程序。我的应用程序的所有测试过程都是使用 Pax-Exam 进行的,它使用 Karaf 创建一个新的 JVM。
我尝试使用 Jacoco 进行集成测试代码覆盖率,但它似乎不起作用。 当我使用它时(使用 maven 插件),创建的 jacoco.exec 文件是空的。
由于 Pax-Exam 正在创建一个新的 JVM 来通过 Karaf 进行测试,因此我使用 javaagent 设置了一个 Pax-Exam 选项,以便为将执行测试的新 JVM 使用完全相同的参数行。不幸的是,它不起作用。
我已经尝试在没有所有 Pax-Exam/Karaf/OSGi 部分的情况下使用 Jacoco,并且它运行良好,但我不知道如何使其与我的 OSGi 包一起使用。
我希望有人能帮忙!
I'm currently working on an application built on the OSGi model. All the testing process of my application is made by using Pax-Exam which create a new JVM by using Karaf.
I tried to use Jacoco for my integration tests code coverage but it doesn't seem to work.
When I'm using it (with the maven plugin), the jacoco.exec file created is empty.
As Pax-Exam is creating a new JVM to do the tests through Karaf, I set a Pax-Exam option with the javaagent in order to use the exact same arg line for the new JVM which will do the tests. Unfortunately, it doesn't work.
I already tried to use Jacoco without all the Pax-Exam/Karaf/OSGi part and it works well, but I don't know how to make it work with my OSGi bundles.
I hope that someone could help with that!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 felix 的人是如何实现这一目标的代码覆盖率。
菲利克斯·贾斯来源
Take a look at how the felix guys achieved this for their code coverage.
Felix Jaas Sources