我已经通过maven在我的项目中配置了My Jacoco插件。
这是我的jacoco配置
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.3</version>
<configuration>
<excludes>
</exclude>**/some/package/SomeClass*</exclude>
</excludes>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>jacoco-check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<rules>
<rule>
<element>CLASS</element>
<excludes>
<exclude>*Test</exclude>
</excludes>
<limits>
<limit>
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>80%</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
我已经执行了该测试,并显示了抽象类的94%的覆盖率,我使用了它的具体实现对其进行了测试。
当我通过maven build运行
我遇到以下错误
违反课堂规则 my.package.AbstractParser.1: 行覆盖率是0.00,但预期最小值是0.80
我尝试在Test上使用虚拟实现来测试抽象类,但仍然遇到相同的错误
有人可以告诉我我在做什么错了。
编辑: 我找出了失败的原因
我已经编写了内联映射初始化
return new HashMap<String, String>() {
{
put(input, "");
}
};
该部分的覆盖率显示为0%。所以我的测试没有涵盖这部分。
但是我累了
final Map<String, String> defaultMap = new HashMap<>();
defaultMap.put(input, "");
return defaultMap;
构建过程没有遍及新代码。有人可以解释一下为什么内联初始化会发生吗?
答案 0 :(得分:1)
您的配置
<rules>
<rule>
<element>CLASS</element>
<excludes>
<exclude>*Test</exclude>
</excludes>
<limits>
<limit>
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>80%</minimum>
</limit>
</limits>
</rule>
</rules>
表示每个课程的行覆盖率至少应为80%。
return new HashMap<String, String>() {
{
put(input, "");
}
};
声明anonymous class ,JaCoCo报告中可见的顺便说一句-请参见下面屏幕截图的第一行
而
final Map<String, String> defaultMap = new HashMap<>();
defaultMap.put(input, "");
return defaultMap;
不声明任何类。
答案 1 :(得分:0)
尝试将其添加到您的gradle版本中
android {
testOptions {
unitTests {
all {
jvmArgs '-noverify'
}
}
}
}
测试和覆盖率存在问题,因此您需要配置jvmArgs
用于覆盖率检查的设置,可以在IDE本身中启用它,但是在CI / maven /中运行覆盖率的任何地方都应在摇动