(self)
| 1868 | self.assertIs(whereis(Point(0, 0)), None) |
| 1869 | |
| 1870 | def test_patma_181(self): |
| 1871 | def whereis(point): |
| 1872 | match point: |
| 1873 | case Point(y=var, x=1): |
| 1874 | return var |
| 1875 | self.assertEqual(whereis(Point(1, 0)), 0) |
| 1876 | self.assertIs(whereis(Point(0, 0)), None) |
| 1877 | |
| 1878 | def test_patma_182(self): |
| 1879 | def whereis(points): |
nothing calls this directly
no test coverage detected