(cls)
| 580 | class OuterTest(unittest.TestCase): |
| 581 | @classmethod |
| 582 | def setUpClass(cls): |
| 583 | ordering.append('outer setup') |
| 584 | cls.addClassCleanup(ordering.append, 'outer cleanup') |
| 585 | def test(self): |
| 586 | ordering.append('start outer test') |
| 587 | runTests(InnerTest) |
nothing calls this directly
no test coverage detected