Fail immediately, with the given message.
(self, msg=None)
| 744 | raise SkipTest(reason) |
| 745 | |
| 746 | def fail(self, msg=None): |
| 747 | """Fail immediately, with the given message.""" |
| 748 | raise self.failureException(msg) |
| 749 | |
| 750 | def assertFalse(self, expr, msg=None): |
| 751 | """Check that the expression is false.""" |
no outgoing calls