Test Euclidean distance calculation.
()
| 197 | |
| 198 | |
| 199 | def test_euclidean_distance() -> None: |
| 200 | """Test Euclidean distance calculation.""" |
| 201 | p1 = Point(0, 0) |
| 202 | p2 = Point(3, 4) |
| 203 | |
| 204 | assert p1.euclidean_distance(p2) == 5.0 |
| 205 | |
| 206 | |
| 207 | def test_consecutive_orientation() -> None: |
nothing calls this directly
no test coverage detected