MCPcopy Index your code
hub / github.com/TheAlgorithms/Python / test_single_point

Function test_single_point

geometry/tests/test_graham_scan.py:13–15  ·  view source on GitHub ↗

Test with a single point.

()

Source from the content-addressed store, hash-verified

11
12
13def test_single_point() -> None:
14 """Test with a single point."""
15 assert graham_scan([Point(0, 0)]) == []
16
17
18def test_two_points() -> None:

Callers

nothing calls this directly

Calls 2

graham_scanFunction · 0.90
PointClass · 0.90

Tested by

no test coverage detected