assertEqual(a, b) |
a ==b |
|
assertEqual(first,second,msg=None) |
断言第一个参数和第二个参数是否相等,如果不相等则测试失败 |
|
assertNotEqual(a, b) |
a !=b |
|
assertNotEqual(first,second,msg=None) |
它用于第一个参数与第二个参数是否不相等,如果相等则测试失败 |
|
assertTrue(expr,x) |
bool(x) is True |
|
测试表达式是true(或false) |
|
|
assertFalse(expr,x) |
Bool(x) is False |
|
测试表达式是true(或false) |
|
|
assertIs(a, b) |
a is b |
3.1 |
assertIn(first,second,msg=None) |
断言第一个参数和第二个参数是否为同一个对象 |
|
assertIsNot(a, b) |
a is not b |
3.1 |
assertNotIn(first,second,msg=None) |
断言第一个参数和第二个参数是否为同一个对象 |
|
assertIsNone(x) |
x is None |
3.1 |
assertIsNone(first,second,msg=None) |
断言表达式是否为None对象 |
|
assertIsNotNone(x) |
x is not None |
3.1 |
assertIsNotNone(first,second,msg=None) |
断言表达式是否为None对象 |
|
assertIsInstance(a, b) |
isinstance(a,b) |
3.1 |
assertIsInstance(first,second,msg=None) |
断言obj是否为cls的一个实例 |
|
assertNotIsInstance(a, b) |
not isinstance(a,b) |
3.1 |
assertIsNotInstance(first,second,msg=None) |
断言obj是否为cls的一个实例 |
|