我目前正在尝试使用 Maven 和 TestNG 运行 Jacoco。
我还没有下载/安装任何东西。
我尝试将以下内容添加到我的父 POM(也尝试添加到测试包 POM,但仍然没有结果)
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.6.3.201306030806</version>
<configuration>
<destfile>${basedir}/target/coverage-reports/jacoco-unit.exec</destfile>
<datafile>${basedir}/target/coverage-reports/jacoco-unit.exec</datafile>
</configuration>
<executions>
<execution>
<id>jacoco-initialize</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>jacoco-site</id>
<phase>package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
当我执行“mvn clean install”或 mvn package 时,输出在根文件夹中显示为“test-output”。我试过在 Maven 中设置“outputDirectory”,但这什么也没做。
我遇到的另一个更大的问题是它没有接受任何 testNG 测试。代码覆盖率为 0。
有人可以帮忙吗?