(self)
| 1494 | self.assertIs(z, x) |
| 1495 | |
| 1496 | def test_patma_148(self): |
| 1497 | x = set() |
| 1498 | match x: |
| 1499 | case set(z): |
| 1500 | y = 0 |
| 1501 | self.assertEqual(x, set()) |
| 1502 | self.assertEqual(y, 0) |
| 1503 | self.assertIs(z, x) |
| 1504 | |
| 1505 | def test_patma_149(self): |
| 1506 | x = "" |
nothing calls this directly
no test coverage detected