diff --git a/geometry/geometry_tests/distance_test.cpp b/geometry/geometry_tests/distance_test.cpp index e2f4b5de69..9869d87b83 100644 --- a/geometry/geometry_tests/distance_test.cpp +++ b/geometry/geometry_tests/distance_test.cpp @@ -2,15 +2,32 @@ #include "../distance.hpp" #include "../point2d.hpp" -UNIT_TEST(DistanceToLineSquare2D) +template +void FloatingPointsTest() { - mn::DistanceToLineSquare d(m2::PointD(-1, 3), m2::PointD(2, 1)); - TEST_ALMOST_EQUAL(d(m2::PointD(-1, 3)), 0.0, ()); - TEST_ALMOST_EQUAL(d(m2::PointD(2, 1)), 0.0, ()); - TEST_ALMOST_EQUAL(d(m2::PointD(-0.5, 0.5)), 3.25, ()); - TEST_ALMOST_EQUAL(d(m2::PointD(-0.5, 0.5)), 3.25, ()); - TEST_ALMOST_EQUAL(d(m2::PointD(3.5, 0.0)), 3.25, ()); - TEST_ALMOST_EQUAL(d(m2::PointD(4.0, 4.0)), 13.0, ()); - TEST_ALMOST_EQUAL(d(m2::PointD(0.5, 2.0)), 0.0, ()); - TEST_ALMOST_EQUAL(d(m2::PointD(0.0, 1.25)), 0.5 * 0.5 + 0.75 * 0.75, ()); + mn::DistanceToLineSquare d(PointT(-1, 3), PointT(2, 1)); + TEST_ALMOST_EQUAL(d(PointT(-1, 3)), 0.0, ()); + TEST_ALMOST_EQUAL(d(PointT(2, 1)), 0.0, ()); + TEST_ALMOST_EQUAL(d(PointT(-0.5, 0.5)), 3.25, ()); + TEST_ALMOST_EQUAL(d(PointT(-0.5, 0.5)), 3.25, ()); + TEST_ALMOST_EQUAL(d(PointT(3.5, 0.0)), 3.25, ()); + TEST_ALMOST_EQUAL(d(PointT(4.0, 4.0)), 13.0, ()); + TEST_ALMOST_EQUAL(d(PointT(0.5, 2.0)), 0.0, ()); + TEST_ALMOST_EQUAL(d(PointT(0.0, 1.25)), 0.5 * 0.5 + 0.75 * 0.75, ()); +} + +UNIT_TEST(DistanceToLineSquare2D_Floating) +{ + FloatingPointsTest(); + FloatingPointsTest(); +} + +#include "../../base/logging.hpp" + +UNIT_TEST(DistanceToLineSquare2D_Integer) +{ + mn::DistanceToLineSquare dI(m2::PointI(-1, 3), m2::PointI(2, 1)); + TEST_ALMOST_EQUAL(dI(m2::PointI(-1, 3)), 0.0, ()); + TEST_ALMOST_EQUAL(dI(m2::PointI(2, 1)), 0.0, ()); + TEST_ALMOST_EQUAL(dI(m2::PointI(4, 4)), 13.0, ()); }