(self)
| 427 | ordering.append('setUpClass') |
| 428 | cls.addClassCleanup(cleanup, ordering) |
| 429 | def setUp(self): |
| 430 | ordering.append('setUp') |
| 431 | self.addCleanup(cleanup, ordering, blowUp=True) |
| 432 | def testNothing(self): |
| 433 | pass |
| 434 | @classmethod |
nothing calls this directly
no test coverage detected