是否有人能够从Maven构建中获得JaCoCo中的JMockit和Powermock单元测试的单元测试覆盖率?
我有一个Powermock单元测试的现有测试集,我想逐渐迁移到JMockit。但我需要能够在一份报告中看到所有单元测试的测试覆盖率,最好是在Sonar中。
通过将JaCoCo置于“离线”模式,我确实让JMockit和Powermock测试与Surefire / JaCoCo一起运行(否则我遇到一个问题,其中一个代理在测试结束时没有被终止,然后 mvn clean 无法在下次运行时删除生成的目标\ surefire \ surefirebooter2967126910681005991.jar 。但是没有为JMockit测试生成覆盖范围。
如果你有这个工作,请发布你的pom的一些摘录。
这就是我的pom的样子(请注意,surefire插件与 reuseForks = false 一致,以解决Powermock中的PermGen内存泄漏问题,这是迁移到JMockit的主要原因之一)
<profile>
<!-- use this profile to perform Sonar analysis -->
<id>sonar</id>
<properties>
<sonar.language>java</sonar.language>
<!-- Tells Sonar to use the generated test coverage report -->
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<!-- Tells Sonar to use JaCoCo as the code coverage tool -->
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.java.codeCoveragePlugin>jacoco</sonar.java.codeCoveragePlugin>
</properties>
<build>
<plugins>
<!-- surefire (junit) plugin config with JaCoCo listener -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.16</version>
<configuration>
<!-- note: use single JVM to append to JaCoCo coverage file -->
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
<argLine>-XX:MaxPermSize=256m </argLine>
<systemPropertyVariables>
<jacoco-agent.destfile>target/jacoco.exec</jacoco-agent.destfile>
</systemPropertyVariables>
</configuration>
</plugin>
<!-- JaCoCo (Sonar) plugin config-->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.6.3.201306030806</version>
<executions>
<execution>
<id>instrument</id>
<phase>process-classes</phase>
<goals>
<goal>instrument</goal>
</goals>
</execution>
<execution>
<id>restore</id>
<phase>site</phase>
<goals>
<goal>restore-instrumented-classes</goal>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<rules>
<rule>
<element>BUNDLE</element>
<limits>
<limit>
<counter>COMPLEXITY</counter>
<value>COVEREDRATIO</value>
<minimum>0.0</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
<configuration>
<append>true</append>
</configuration>
</plugin>
</plugins>
</build>
</profile>
答案 0 :(得分:0)
在classpath或jacoco agent.jar没有添加到测试类路径之后,任何已检测的类都在未经过检测的类之后传递。
要检查两个可能性,请检查已检测类的位置,使用-X标志运行mvn并检查类路径以执行测试(查看类路径元素的顺序以及jacoco代理是否在类路径上。)