Test single point returns empty hull.
(self)
| 79 | assert jarvis_march([]) == [] |
| 80 | |
| 81 | def test_single_point(self) -> None: |
| 82 | """Test single point returns empty hull.""" |
| 83 | assert jarvis_march([Point(0, 0)]) == [] |
| 84 | |
| 85 | def test_two_points(self) -> None: |
| 86 | """Test two points return empty hull.""" |
nothing calls this directly
no test coverage detected