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