unittest的使用三——断言

Posted peiminer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unittest的使用三——断言相关的知识,希望对你有一定的参考价值。

常用的断言有3种:

判断两个值是不是都相等,参数分别是第一个值,第二个值,msg代表不想等的话,描述的信息

def assertEqual(self, first, second, msg=None):
"""Fail if the two objects are unequal as determined by the ‘==‘
operator.
"""
assertion_func = self._getAssertEqualityFunc(first, second)
assertion_func(first, second, msg=msg)

判断返回的是不是true

def assertTrue(self, expr, msg=None):
"""Check that the expression is true."""
if not expr:
msg = self._formatMessage(msg, "%s is not true" % safe_repr(expr))
raise self.failureException(msg)

判断返回的两个值是不是不想等

def assertNotEqual(self, first, second, msg=None):
"""Fail if the two objects are equal as determined by the ‘!=‘
operator.
"""
if not first != second:
msg = self._formatMessage(msg, ‘%s == %s‘ % (safe_repr(first),
safe_repr(second)))
raise self.failureException(msg)

技术分享图片

 













以上是关于unittest的使用三——断言的主要内容,如果未能解决你的问题,请参考以下文章

unittest----assert断言的使用

pytest学习和使用5-Pytest和Unittest中的断言如何使用?

测试教程网.unittest教程.8. 断言异常

Unittest 框架之断言,你学会了吗??

unittest中的如何判断结果是不是满足预期?

python unittest之断言及示例