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