我一直在看 IntelliJ,我喜欢 JUnit 测试的代码覆盖率报告,但我想知道是否有人在使用任何东西或知道任何可以与 Maven 一起使用的插件,以便在 JUnit 的代码覆盖率报告测试时构建报告测试
问问题
8766 次
4 回答
2
您可以使用Maven 的 Sonar 插件
运行maven sonar:sonar
于 2013-02-13T14:28:18.013 回答
1
我目前正在使用EclEmma来查看我的单元测试的代码覆盖率。它完全按照应有的方式工作。它甚至允许您合并多个覆盖测试,而不是重新测试所有内容。
于 2013-02-13T14:29:39.833 回答
1
这是一个适用于Jenkins的示例配置。
<!--no longer executed in test phase. Run cobertura:cobertura to generate -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<aggregate>true</aggregate>
<instrumentation>
<ignores>
<ignore>test.package.if.needed.later.*</ignore>
</ignores>
<excludes>
<!-- eg.: -->
<exclude>javax/**/*.class</exclude>
</excludes>
</instrumentation>
<formats>
<format>html</format>
<format>xml</format>
</formats>
<check />
</configuration>
</plugin>
干杯,
于 2013-02-13T14:29:41.677 回答
0
您可以使用Maven Cobertura 插件
于 2013-02-13T14:21:28.753 回答