美文网首页
python unittest常用断言

python unittest常用断言

作者: 一念之动即是行 | 来源:发表于2019-06-14 14:20 被阅读0次

Python单元测试unittest

assertEqual(a, b)     #a == b      
assertNotEqual(a, b)     #a != b      
assertTrue(x)    # bool(x) is True      
assertFalse(x)    # bool(x) is False      
assertIsNone(x)    # x is None     
assertIsNotNone(x)  #   x is not None   
assertIn(a, b)     #a in b    
assertNotIn(a, b)   #  a not in b

相关文章

网友评论

      本文标题:python unittest常用断言

      本文链接:https://www.haomeiwen.com/subject/rsnufctx.html