(cls)
| 572 | class InnerTest(unittest.TestCase): |
| 573 | @classmethod |
| 574 | def setUpClass(cls): |
| 575 | ordering.append('inner setup') |
| 576 | cls.addClassCleanup(ordering.append, 'inner cleanup') |
| 577 | def test(self): |
| 578 | ordering.append('inner test') |
| 579 |
nothing calls this directly
no test coverage detected