Test empty list returns empty hull.
(self)
| 75 | assert not any(p in hull for p in interior) |
| 76 | |
| 77 | def test_empty_list(self) -> None: |
| 78 | """Test empty list returns empty hull.""" |
| 79 | assert jarvis_march([]) == [] |
| 80 | |
| 81 | def test_single_point(self) -> None: |
| 82 | """Test single point returns empty hull.""" |
nothing calls this directly
no test coverage detected