gpt4 book ai didi

java - Cobertura 检查没有使构建失败

转载 作者:行者123 更新时间:2023-11-30 06:01:34 28 4
gpt4 key购买 nike

我创建了一个基本的 Maven 包。 src/main/java 目录包含:

public class Blah {
public int blah(){
return 1;
}

public int bluh(){
return 2;
}
}

src/test/java 目录包含:

import static org.junit.Assert.assertEquals;


import org.junit.Test;


public class BlahTest {
@Test
public void blahTest() {
Blah b = new Blah();
assertEquals(1, b.blah());
}
}

pom如下:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>cob_test</groupId>
<artifactId>cob_test</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<check>
<haltOnFailure>true</haltOnFailure>
<branchRate>75</branchRate>
<lineRate>85</lineRate>
<totalBranchRate>75</totalBranchRate>
<totalLineRate>85</totalLineRate>
<packageLineRate>75</packageLineRate>
<packageBranchRate>85</packageBranchRate>
</check>
</configuration>
</plugin>
</plugins>
</reporting>

</project>

当我运行mvn install时,检查部分中的各种参数未得到验证。由于有 2 个功能,我预计覆盖率为 50%,并且预期覆盖率最小值高于该值。因此,构建应该会失败。另外,有没有一种方法可以在命令行上构建后立即显示包级别覆盖率数字,而不是将它们放在 html 文件中。

详细的分割很有帮助,但我也希望在违反最小覆盖范围限制时使构建失败。

最佳答案

你必须执行

mvn verify

运行 cobertura,因为它默认在 verfiy 生命周期阶段运行。

如果您想更改,可以按如下方式修改插件配置(将验证阶段更改为您喜欢的):

<project>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<check>
<haltOnFailure>true</haltOnFailure>
<branchRate>75</branchRate>
<lineRate>85</lineRate>
<totalBranchRate>75</totalBranchRate>
<totalLineRate>85</totalLineRate>
<packageLineRate>75</packageLineRate>
<packageBranchRate>85</packageBranchRate>
</check>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

关于java - Cobertura 检查没有使构建失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52177115/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com