我正在尝试使用JMockit和 Maven Surefire 插件生成覆盖率报告。但什么也没有发生。
以下是我的 pom.xml 的相关部分:
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.15</version>
<configuration>
<argLine>
-Djmockit-coverage-outputDir=target/coverage-report
</argLine>
</configuration>
</plugin>
jmockit 依赖:
<dependency>
<groupId>com.googlecode.jmockit</groupId>
<artifactId>jmockit-coverage</artifactId>
<version>0.999.22</version>
<scope>runtime</scope>
</dependency>
这与JMockit 文档中的示例几乎相同。
它应该生成一个带有 Maven“测试”目标的报告,但它没有。我也尝试过“surefire:test”,但没有任何反应。
我正在使用 Java 7 和 Maven 3.0。
如何使用 maven 生成 JMockit 覆盖率报告?