(self)
| 2319 | self.assertEqual(set(f()), set()) |
| 2320 | |
| 2321 | def test_patma_217(self): |
| 2322 | def f(): |
| 2323 | match ...: |
| 2324 | case abc: |
| 2325 | return locals() |
| 2326 | self.assertEqual(set(f()), {"abc"}) |
| 2327 | |
| 2328 | def test_patma_218(self): |
| 2329 | def f(): |
nothing calls this directly
no test coverage detected