2 回答
TA贡献1859条经验 获得超6个赞
要使用 JaCoCo 记录覆盖率,您需要使用 JaCoCo Java 代理执行测试。
根据https://www.jacoco.org/jacoco/trunk/doc/prepare-agent-mojo.html:
准备一个指向 JaCoCo 运行时代理的属性,该代理可以作为 VM 参数传递给被测应用程序。
默认情况下,它会设置argLine
由 选择的属性maven-surefire-plugin
,但是似乎您实际上maven-surefire-plugin
并没有使用,而是使用了 的java
目标exec-maven-plugin
,其中
首先不启动新的 JVM - 见https://www.mojohaus.org/exec-maven-plugin/java-mojo.html:
在当前 VM 中执行提供的 java 类
第二 - 不使用
argLine
因此,请确保在您的测试期间使用 JaCoCo 代理,例如使用exec
目标exec-maven-plugin
并传递argLine
给它 - 请参阅https://www.mojohaus.org/exec-maven-plugin/exec-mojo.html#arguments
TA贡献1895条经验 获得超3个赞
检查插件
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.4.0.905</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.9</version>
<configuration>
<destFile>${sonar.jacoco.reportPath}</destFile>
<append>true</append>
</configuration>
<executions>
<execution>
<id>agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
仅添加此插件
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.9</version>
<configuration>
<destFile>${sonar.jacoco.reportPath}</destFile>
<append>true</append>
</configuration>
<executions>
<execution>
<id>agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
添加回答
举报