| 8 | double constexpr kAccuracyEps = 1e-3; |
| 9 | |
| 10 | void testDistance(ms::LatLon const & a, ms::LatLon const & b, double planDistance) |
| 11 | { |
| 12 | double const factDistance = oblate_spheroid::GetDistance(a, b); |
| 13 | TEST_ALMOST_EQUAL_ABS(factDistance, planDistance, kAccuracyEps, ()); |
| 14 | } |
| 15 | } // namespace |
| 16 | |
| 17 | UNIT_TEST(Distance_EdgeCaseEquatorialLine) |
no test coverage detected