- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两段代码给我带来了麻烦。我用单元测试测试它们,使用 cobertura 来分析测试覆盖率,我不明白条件覆盖率是如何计算的。
这是第一篇:
if ((x.getInt() == a)
|| (x.getInt() == y.getInt()) { ...
if ((x == null)
|| ObjectUtils.equals(x.getInt(), a)
|| ObjectUtils.equals(x.getInt(), y.getInt())) {
...
how does cobertura handle conditional coverage in these cases, and why does that lead to 6 cases?
最佳答案
覆盖率不是通过测试 bool 标志状态的所有可能组合来衡量的,而是仅通过测试足以覆盖所有用例的那些组合来衡量。
考虑以下类:
public class MyClass {
public boolean allOr(boolean x, boolean y) {
return x || y;
}
public boolean allOr(boolean x, boolean y, boolean z) {
return x || y || z;
}
public boolean allOr(boolean w, boolean x, boolean y, boolean z) {
return w || x || y || z;
}
public boolean allAnd(boolean x, boolean y) {
return x && y;
}
public boolean allAnd(boolean x, boolean y, boolean z) {
return x && y && z;
}
public boolean andOr(boolean x, boolean y, boolean z) {
return x && y || z;
}
public boolean orAnd(boolean x, boolean y, boolean z) {
return (x || y) && z;
}
}
public class MyClassTest {
@Test
public void testAllOr2() {
MyClass instance = new MyClass();
// For OR clause, test that all false returns false
assertFalse(instance.allOr(false, false));
// For OR clause, test that any one true returns true
assertTrue(instance.allOr(false, true));
assertTrue(instance.allOr(true, false));
}
@Test
public void testAllOr3() {
MyClass instance = new MyClass();
// For OR clause, test that all false returns false
assertFalse(instance.allOr(false, false, false));
// For OR clause, test that any one true returns true
assertTrue(instance.allOr(false, false, true));
assertTrue(instance.allOr(false, true, false));
assertTrue(instance.allOr(true, false, false));
// These do not add to coverage
// assertTrue(instance.allOr(false, true, true));
// assertTrue(instance.allOr(true, false, true));
// assertTrue(instance.allOr(true, true, false));
// assertTrue(instance.allOr(true, true, true));
}
@Test
public void testAllOr4() {
MyClass instance = new MyClass();
// For OR clause, test that all false returns false
assertFalse(instance.allOr(false, false, false, false));
// For OR clause, test that any one true returns true
assertTrue(instance.allOr(false, false, false, true));
assertTrue(instance.allOr(false, false, true, false));
assertTrue(instance.allOr(false, true, false, false));
assertTrue(instance.allOr(true, false, false, false));
}
@Test
public void testAllAnd2() {
MyClass instance = new MyClass();
// For AND clause, test that all true returns true
assertTrue(instance.allAnd(true, true));
// For AND clause, test that any one false returns false
assertFalse(instance.allAnd(true, false));
assertFalse(instance.allAnd(false, true));
}
@Test
public void testAllAnd3() {
MyClass instance = new MyClass();
// For AND clause, test that all true returns true
assertTrue(instance.allAnd(true, true, true));
// For AND clause, test that any one false returns false
assertFalse(instance.allAnd(false, true, true));
assertFalse(instance.allAnd(true, false, true));
assertFalse(instance.allAnd(true, true, false));
}
@Test
public void testAndOr() {
MyClass instance = new MyClass();
// Since AND takes precedence,
// OR is the external operator, AND is the internal operator
// For the AND clause, false can be achieved in two ways
// Compare to testAllAnd2 # 2, 3
assertFalse(instance.andOr(true, false, false));
assertFalse(instance.andOr(false, true, false));
// This completes the first test case for the external operator
// Compare to testAllOr2 # 1
// Now irrespective of the arguments
// as long as the value returned by the internal operation is false
// we can perform the testAllOr2 # 2
assertTrue(instance.andOr(true, false, true));
// We do not need the case for false, true, true
// because we have tested that no matter what the first two args are
// it does not make a difference as long as one of them is false
// However, if both args are true
// the value returned by the internal operation is true
// we can perform the testAllOr2 # 3
// This is only possible in one way
// Compare testAllAnd2 # 1
assertTrue(instance.andOr(true, true, false));
}
@Test
public void testOrAnd() {
MyClass instance = new MyClass();
// Since OR takes precedence,
// AND is the external operator, OR is the internal operator
// For the OR clause, true can be achieved in two ways
// Compare to testAllOr2 # 2, 3
assertTrue(instance.orAnd(false, true, true));
assertTrue(instance.orAnd(true, false, true));
// This completes the first test case for the external operator
// Compare to testAllAnd2 # 1
// Now irrespective of the arguments
// as long as the value returned by the internal operation is true
// we can perform the testAllAnd2 # 2
assertFalse(instance.orAnd(false, true, false));
// We do not need the case for true, false, false
// because we have tested that no matter what the first two args are
// it does not make a difference as long as one of them is true
// However, if both args are false
// the value returned by the internal operation is false
// we can perform the testAllAnd2 # 3
// This is only possible in one way
// Compare testAllOr2 # 1
assertFalse(instance.orAnd(false, false, true));
}
}
关于code-coverage - Cobertura 中条件覆盖的计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14561679/
从 Cobertura Maven 插件调用 cobertura:instrument 目标可能是什么实际用例? 我知道它只是工具类,但是什么时候它可能比 cobertura:cobertura 或
我正在使用 cobertura maven 插件 2.4。我没有看到任何选项来设置将数据文件 (cobertura.ser) 存储到特定文件夹的位置。 最佳答案 看看http://jira.codeh
我对部署和代码覆盖问题还很陌生,现在我遇到了一个问题,我的应用程序使用 cobertura maven 插件 2.7 和 covertura 版本 2.1.1 和 java 8。我在 cobertur
自从我将我的 sonarqube 服务器更新到 6.1 以来,我在我的 gradle 项目中遇到了这个错误。 我正在使用 Sonar 插件最新版本 (2.2) classpath("org.sonar
我看到在cobertura-maven-plugin中,可以同时使用excludes和ignores配置我的工具。两者有什么区别? 最佳答案 Maven插件不包含有关此配置选项的任何文档(但它们包含在
我正在尝试使用 cobertura 插件生成代码覆盖率报告。 我的 pom.xml 中有这个依赖项 org.codehaus.mojo cobertura-maven-plugi
我为我的grails 3.1.6项目添加了cobertura代码覆盖率,覆盖率报告似乎有点过时,即我有单元测试用例(pos和neg情况)都覆盖了if块,但是报告说没有覆盖率如果-block。 Grad
我正在使用 Maven (2) Cobertura 插件来创建代码覆盖率报告,并且我在方法中使用了以下 stub : try { System.exit(0); } catch (final
我正在使用 Cobertura 进行代码覆盖率分析。如果我在 Jenkins 中运行构建,生成 中的类将包含在覆盖率结果中,但覆盖率为 0%。如果我在工作区 (Eclipse) 中运行代码覆盖率,覆盖
我是 Cobertura 的新手,我正在尝试从编译的 jar 文件中检测类。 解压后,我运行以下命令: D:\cobertura-1.9.4.1\7.6.300.01>D:\cobertura-1.9
我目前正在努力解决Cobertura在某些情况下无法识别给定类的代码覆盖率的问题。尽管该类已经过全面测试(方法覆盖率 100%),但 Cobertura 显示的覆盖率为 0%。 同一包中还有其他类可以
我是第一次使用 cobertura。一切正常,但我想知道的是,我的代码中有几行永远不应该这样调用: try { em.persist(); }catch(Exception) { lo
我创建了一个基本的 Maven 包。 src/main/java 目录包含: public class Blah { public int blah(){ return 1;
我有一个使用 Maven 配置的庞大代码库。我的代码库分为不同的 Maven 模块,因此我有一个主 pom 文件,每个子模块都有自己的 pom 文件。但这些模块仍然互相调用彼此的功能。为每个模块编写
通过 gcovr,我能够为我的 IOS 应用程序生成代码覆盖率报告 (coverage.xml)。我将如何使用 cobertura 插件将 coverage.xml 转换为 cobertura htm
我看到 Cobertura 有一个 可用于在构建时强制覆盖的任务(如果覆盖指标低于某个值,则构建失败)。该网站显示了具有多个可用属性的示例,但并未真正描述它们是什么或它们的作用: branchrate
我正在尝试使用 Gradle Cobertura 插件作为我的 Springboot 应用程序的代码覆盖工具。该应用程序主要是 Java 后端,但确实包含一些常规代码。 我正在使用 Java 1.8.
我从我的 Maven 父项目中删除了一个子项目。 现在,当我在父项目上运行 cobertura:cobertura 时,已经消失的类仍然列在我们 Jenkins CI 的覆盖率报告中。 . 整个 Ma
有人知道 Cobertura 将它的报道图片贴在哪里吗? 我图片的网址是:http://ContinualTests/746/cobertura/graph 当我深入研究运行 tomcat/hudso
经过一些努力我终于得到cobertura我的 Web 应用程序在 tomcat 上正确运行服务器。在我将它提交给 svn 并且 hudson 完成(失败)他的工作之前,一切似乎都很好。如果没有这个构建
我是一名优秀的程序员,十分优秀!