gpt4 book ai didi

java - 如何检查所有类都已在 Gradle 中测试

转载 作者:行者123 更新时间:2023-12-02 12:31:06 26 4
gpt4 key购买 nike

我正在使用 Gradle 和 jacoco 插件,我正在寻找一种方法来检查项目的所有类都在单元测试中进行了测试,并且至少有一半的指令。

最佳答案

这是我找到的解决方案

// apply plugin
apply "jacoco"

jacocoTestCoverageVerification {
violationRules {
rule {
// this rule insure 50% of instructions have been tested
limit {
minimum = 0.5
}
}
rule {
// this rule insure all classes have been tested
limit {
counter = 'CLASS'
value = 'MISSEDCOUNT'
maximum = 0
}
}
}
}

关于java - 如何检查所有类都已在 Gradle 中测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45290907/

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