代码覆盖中的部分内容是什么?

时间:2016-03-15 09:09:52

标签: python code-coverage coverage.py

最近,在我的项目中从Coveralls切换到Codecov覆盖率下降了几个百分点。这似乎是由于部分命中,它们被计为工作服中的命中数,但在Codecov中被忽略。

这是一个代码示例:

using

据我所知,解释器完全评估了if语句。那为什么它不算是一个打击呢?

1 个答案:

答案 0 :(得分:9)

这意味着在该行上有一个分支语句,但其中一个分支从未执行过。

从以下几行可以看出,内容并未提供给该构造函数,因此您从未使用Struct(content=something)测试代码。

另请注意,如果您不提供参数,则不会设置self.content,因此如果尝试访问,则会引发AttributeError

虽然在这种情况下你可以从if 中的语句中推断出来,如果真值相反,你就不能看到条件永远不会 false 。再次考虑您的示例,略微修改

class Struct(object):                  # hit
    def __init__(self, content=None):  # hit            
        if content is not None:        # partial hit
            self.content = content     # hit

    def print_content(self):           # hit
        print(self.content)            # hit

s = Struct('42')                       # hit
s.print_content()                      # hit

看起来一切都很好吗?如果您没有使用分支机构覆盖,if也会说"点击" ,您就不会请注意,在content is not None False 的情况下,您从未测试过该代码,然后会出现不设置self.content属性的错误:以下程序:

s = Struct()
s.print_content()

跑步时,加注:

Traceback (most recent call last):
  File "foo.py", line 10, in <module>
    s.print_content()
  File "foo.py", line 7, in print_content
    print(self.content)
AttributeError: 'Struct' object has no attribute 'content'