(self)
| 1845 | self.assertEqual(whereis(42), "Not a point") |
| 1846 | |
| 1847 | def test_patma_178(self): |
| 1848 | def whereis(point): |
| 1849 | match point: |
| 1850 | case Point(1, var): |
| 1851 | return var |
| 1852 | self.assertEqual(whereis(Point(1, 0)), 0) |
| 1853 | self.assertIs(whereis(Point(0, 0)), None) |
| 1854 | |
| 1855 | def test_patma_179(self): |
| 1856 | def whereis(point): |
nothing calls this directly
no test coverage detected