Test with all duplicate points.
()
| 21 | |
| 22 | |
| 23 | def test_duplicate_points() -> None: |
| 24 | """Test with all duplicate points.""" |
| 25 | p = Point(0, 0) |
| 26 | points = [p, Point(0, 0), Point(0, 0), Point(0, 0), Point(0, 0)] |
| 27 | assert graham_scan(points) == [] |
| 28 | |
| 29 | |
| 30 | def test_collinear_points() -> None: |
nothing calls this directly
no test coverage detected