6

有没有人能够从 Maven 构建中获得在 JaCoCo 中工作的 JMockit 和 Powermock 单元测试的单元测试覆盖率?

我有一个现有的 Powermock 单元测试测试集,我想逐渐迁移到 JMockit。但是我需要能够在一份报告中看到所有单元测试的测试覆盖率,最好是在 Sonar 中。

通过将 JaCoCo 置于“离线”模式,我确实让 JMockit 和 Powermock 测试与 Surefire / JaCoCo 一起运行(否则我遇到了一个问题,即其中一个代理在测试结束时没有被终止,然后mvn clean无法删除在下次运行时生成target\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>
4

1 回答 1

0

在类路径上的未检测类之后通过检测类或 jacoco agent.jar 未添加到测试类路径。

要检查这两种可能性,请检查您已检测类的位置,使用 -X 标志运行 mvn 并检查测试执行的类路径(查看类路径元素的顺序以及 jacoco 代理是否在类路径上。)

于 2014-10-22T16:16:54.867 回答