Emma覆盖报告和集成测试

时间:2011-12-06 16:42:17

标签: testng integration-testing maven-surefire-plugin emma

有没有办法让Emma报告集成测试?目前我们的Emma报道仅显示单元测试。

添加澄清: 我们正在使用maven来运行构建和测试。测试是使用testng而不是jUnit运行的,我们正在运行surefire插件:maven-surefire-plugin

1 个答案:

答案 0 :(得分:0)

我花了很多时间试图让Emma在结果覆盖中包含集成测试。我查看了emma4it插件,但我能找到的唯一文档是this blog post from Sonatype,无法让它工作。

最后我放弃了,转而使用JaCoCo代替。它是由写艾玛的同一个人写的,因此打算成为其继任者。我没有尝试将它与testng一起使用,但我通过向POM添加以下'plugin'声明来使用jUnit:

<plugin>
    <groupId>org.jacoco</groupId>
    <artifactId>jacoco-maven-plugin</artifactId>

    <executions>
        <execution>
            <id>agent</id>
            <goals>
                <goal>prepare-agent</goal>
            </goals>
        </execution>
        <execution>
            <id>report</id>
            <phase>install</phase>
            <goals>
                <goal>report</goal>
            </goals>
        </execution>
    </executions>
</plugin>