assertEqual
(first, second, msg=None)¶
只有first和second相等时,才是通过,否则不通过。first和second可以是任意类型,当判断是否相等时调用特定类型的相等函数判断,所以会给出明确的错误信息。
assertNotEqual
(first, second, msg=None)
只有first和second不相等时,才是通过,否则不通过。
assertTrue
(expr, msg=None)assertFalse
(expr, msg=None)
其中是判断bool(expr),并非是指expr为True或False
assertIs
(first, second, msg=None)assertIsNot
(first, second, msg=None)
assertIsNone
(expr, msg=None)assertIsNotNone
(expr, msg=None)
assertIn
(first, second, msg=None)assertNotIn
(first, second, msg=None)
assertIsInstance
(obj, cls, msg=None)assertNotIsInstance
(obj, cls, msg=None)