(cls)
| 1052 | class Foo(unittest.TestCase): |
| 1053 | @classmethod |
| 1054 | def setUpClass(cls): |
| 1055 | print('set up class') |
| 1056 | 1/0 |
| 1057 | def test_foo(self): |
| 1058 | pass |
| 1059 | suite = unittest.TestSuite([Foo('test_foo')]) |
nothing calls this directly
no test coverage detected