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

Function test_two_points

geometry/tests/test_graham_scan.py:18–20  ·  view source on GitHub ↗

Test with two points.

()

Source from the content-addressed store, hash-verified

16
17
18def test_two_points() -> None:
19 """Test with two points."""
20 assert graham_scan([Point(0, 0), Point(1, 1)]) == []
21
22
23def test_duplicate_points() -> None:

Callers

nothing calls this directly

Calls 2

graham_scanFunction · 0.90
PointClass · 0.90

Tested by

no test coverage detected