Jacoc覆盖率检查由于排除而失败,显示为0%覆盖率

问题描述

我在jacoco插件中使用了以下配置。

cgroups

但是问题是,添加排除项时,覆盖范围百分比进一步降低(变得更糟),因为排除的软件包变为0%。

我尝试在 <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <configuration> <dataFile>${user.dir}/target/jacoco.exec</dataFile> <excludes> <exclude>**/*myclass</exclude> </excludes> </configuration> <executions> <execution> <id>agent-for-ut</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <append>true</append> <destFile>${user.dir}/target/jacoco.exec</destFile> </configuration> </execution> <execution> <id>jacoco-site</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <outputDirectory>${user.dir}/target/coverage-reports/jacoco</outputDirectory> </configuration> </execution> <execution> <id>jacoco-check</id> <phase>test</phase> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule> <limits> <limit> <counter>LINE</counter> <value>COVEREdratIO</value> <minimum>80%</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> 执行下添加排除项,结果仍然相同。

解决方案吗?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)