(self)
| 145 | |
| 146 | class TestableTest(unittest.TestCase): |
| 147 | def setUp(self): |
| 148 | ordering.append('setUp') |
| 149 | test.addCleanup(cleanup2) |
| 150 | if blowUp: |
| 151 | raise CustomError('foo') |
| 152 | |
| 153 | def testNothing(self): |
| 154 | ordering.append('test') |
nothing calls this directly
no test coverage detected