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:
authorRoman Sorokin <sorok-roma@yandex.ru>2014-07-31 15:39:37 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:22:45 +0300
commit0ccf5f9d0519c671b1c72b0d93fd355d9005b20c (patch)
treeb8bcb4cf6dce901c6dec4ad7bca2f459affa4537 /geometry/geometry_tests
parent815c2a94abe7593c376313f3292f0ecdb1ae5cd8 (diff)
syntax fixes
Diffstat (limited to 'geometry/geometry_tests')
-rw-r--r--geometry/geometry_tests/spline_test.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/geometry/geometry_tests/spline_test.cpp b/geometry/geometry_tests/spline_test.cpp
index 7c49e4b212..5e1327634a 100644
--- a/geometry/geometry_tests/spline_test.cpp
+++ b/geometry/geometry_tests/spline_test.cpp
@@ -163,13 +163,13 @@ UNIT_TEST(BeginAgain)
PointF dir1(sqrt2 / 2.0f, sqrt2 / 2.0f);
PointF dir2(sqrt2 / 2.0f, -sqrt2 / 2.0f);
itr.Attach(spl);
- TEST_EQUAL(itr.beginAgain(), false, ());
+ TEST_EQUAL(itr.BeginAgain(), false, ());
itr.Step(90.0f);
- TEST_EQUAL(itr.beginAgain(), false, ());
+ TEST_EQUAL(itr.BeginAgain(), false, ());
itr.Step(90.0f);
- TEST_EQUAL(itr.beginAgain(), true, ());
+ TEST_EQUAL(itr.BeginAgain(), true, ());
itr.Step(190.0f);
- TEST_EQUAL(itr.beginAgain(), true, ());
+ TEST_EQUAL(itr.BeginAgain(), true, ());
path.clear();
@@ -181,12 +181,12 @@ UNIT_TEST(BeginAgain)
Spline spl2;
spl2.FromArray(path);
itr.Attach(spl2);
- TEST_EQUAL(itr.beginAgain(), false, ());
+ TEST_EQUAL(itr.BeginAgain(), false, ());
itr.Step(90.0f);
- TEST_EQUAL(itr.beginAgain(), false, ());
+ TEST_EQUAL(itr.BeginAgain(), false, ());
itr.Step(90.0f);
- TEST_EQUAL(itr.beginAgain(), true, ());
+ TEST_EQUAL(itr.BeginAgain(), true, ());
itr.Step(190.0f);
- TEST_EQUAL(itr.beginAgain(), true, ());
+ TEST_EQUAL(itr.BeginAgain(), true, ());
}