(self)
| 2310 | self.assertEqual(set(f()), set()) |
| 2311 | |
| 2312 | def test_patma_216(self): |
| 2313 | def f(): |
| 2314 | match ...: |
| 2315 | case _: |
| 2316 | return locals() |
| 2317 | self.assertEqual(set(f()), set()) |
| 2318 | |
| 2319 | def test_patma_217(self): |
| 2320 | def f(): |
nothing calls this directly
no test coverage detected