Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLev Dragunov <l.dragunov@corp.mail.ru>2015-02-12 17:29:00 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:37:25 +0300
commit714a7e1a371f440da30898d8b9db4a9187b63cfa (patch)
tree5daf8246720f9ba96223b5e265d72441b4b34c72 /geometry/geometry_tests/region_test.cpp
parent04b7fc51e669a6244ce72d90a0231f353b70a993 (diff)
Cross context reading fixes + PR updates
Diffstat (limited to 'geometry/geometry_tests/region_test.cpp')
-rw-r--r--geometry/geometry_tests/region_test.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/geometry/geometry_tests/region_test.cpp b/geometry/geometry_tests/region_test.cpp
index 944dc60903..64cc0fb208 100644
--- a/geometry/geometry_tests/region_test.cpp
+++ b/geometry/geometry_tests/region_test.cpp
@@ -206,9 +206,9 @@ UNIT_TEST(Region_point_at_border_test)
P p4(5.0, 1.0);
P p5(5.0, 1.01);
- TEST(!region.atBorder(p1, 0.01), ("Point lies outside the border"));
- TEST(!region.atBorder(p2, 0.01), ("Point lies strictly inside the border"));
- TEST(region.atBorder(p3, 0.01), ("Point has same point with border"));
- TEST(region.atBorder(p4, 0.01), ("Point lies at border"));
- TEST(region.atBorder(p5, 0.01), ("Point lies at delta interval near border"));
+ TEST(!region.AtBorder(p1, 0.01), ("Point lies outside the border"));
+ TEST(!region.AtBorder(p2, 0.01), ("Point lies strictly inside the border"));
+ TEST(region.AtBorder(p3, 0.01), ("Point has same point with the border"));
+ TEST(region.AtBorder(p4, 0.01), ("Point lies at the border"));
+ TEST(region.AtBorder(p5, 0.01), ("Point lies at delta interval near the border"));
}