(self)
| 1860 | self.assertIs(whereis(Point(0, 0)), None) |
| 1861 | |
| 1862 | def test_patma_180(self): |
| 1863 | def whereis(point): |
| 1864 | match point: |
| 1865 | case Point(x=1, y=var): |
| 1866 | return var |
| 1867 | self.assertEqual(whereis(Point(1, 0)), 0) |
| 1868 | self.assertIs(whereis(Point(0, 0)), None) |
| 1869 | |
| 1870 | def test_patma_181(self): |
| 1871 | def whereis(point): |
nothing calls this directly
no test coverage detected