diff --git a/geometry/geometry_tests/region_test.cpp b/geometry/geometry_tests/region_test.cpp index 46b1887095..a8a79a6b5d 100644 --- a/geometry/geometry_tests/region_test.cpp +++ b/geometry/geometry_tests/region_test.cpp @@ -33,6 +33,25 @@ void Test() } +UNIT_TEST(Region) +{ + typedef m2::PointD P; + P p1[] = { P(0.1, 0.2) }; + + m2::Region
region(p1, p1 + ARRAY_SIZE(p1));
+ TEST(!region.IsValid(), ());
+
+ {
+ P p2[] = { P(1.0, 2.0), P(55.0, 33.0) };
+ region.Assign(p2, p2 + ARRAY_SIZE(p2));
+ }
+ TEST(!region.IsValid(), ());
+
+ region.AddPoint(P(34.4, 33.2));
+ TEST(region.IsValid(), ());
+
+}
+
UNIT_TEST(Region_Contains)
{
Test region(points, points + ARRAY_SIZE(points));
+
+ PointsSummator s;
+ region.ForEachPoint(s);
+
+ TEST_EQUAL(s.m_xSumm, 11.5, ());
+ TEST_EQUAL(s.m_ySumm, 14.5, ());
+}
diff --git a/geometry/region2d.hpp b/geometry/region2d.hpp
index 27b1761ac7..2b34aff741 100644
--- a/geometry/region2d.hpp
+++ b/geometry/region2d.hpp
@@ -10,6 +10,8 @@ namespace m2
template