(self, expression, msg=None)
| 3388 | ) |
| 3389 | |
| 3390 | def assert_false(self, expression, msg=None): |
| 3391 | if expression: |
| 3392 | if not msg: |
| 3393 | raise AssertionError("%s is not false." % expression) |
| 3394 | else: |
| 3395 | raise AssertionError( |
| 3396 | "%s is not false. (%s)" % (expression, msg) |
| 3397 | ) |
| 3398 | |
| 3399 | def assert_equal(self, first, second, msg=None): |
| 3400 | if first != second: |
no outgoing calls