我目前正在尝试使用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包时,输出在根文件夹中显示为“test-output”。我已经尝试在Maven中设置“outputDirectory”,但这没有任何作用。
我遇到的另一个更大的问题是它没有接受任何testNG测试。代码覆盖率为0.
有人可以帮忙吗?
答案 0 :(得分:0)
<MyClass>Test
结尾的课程?@Test
注释该类的其中一个方法(对您来说很明显)。但请确保指定public
访问者。