Fail immediately, with the given message.
(self, msg=None)
| 751 | raise SkipTest(reason) |
| 752 | |
| 753 | def fail(self, msg=None): |
| 754 | """Fail immediately, with the given message.""" |
| 755 | raise self.failureException(msg) |
| 756 | |
| 757 | def assertFalse(self, expr, msg=None): |
| 758 | """Check that the expression is false.""" |
no outgoing calls