(self)
| 389 | |
| 390 | class ExceptionGroupSubgroupTests(ExceptionGroupTestBase): |
| 391 | def setUp(self): |
| 392 | self.eg = create_simple_eg() |
| 393 | self.eg_template = [ValueError(1), TypeError(int), ValueError(2)] |
| 394 | |
| 395 | def test_basics_subgroup_split__bad_arg_type(self): |
| 396 | class C: |
nothing calls this directly
no test coverage detected