Test two points return empty hull.
(self)
| 83 | assert jarvis_march([Point(0, 0)]) == [] |
| 84 | |
| 85 | def test_two_points(self) -> None: |
| 86 | """Test two points return empty hull.""" |
| 87 | assert jarvis_march([Point(0, 0), Point(1, 1)]) == [] |
| 88 | |
| 89 | def test_square(self) -> None: |
| 90 | """Test convex hull of a square.""" |
nothing calls this directly
no test coverage detected