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:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-05-27 14:11:02 +0300
committerVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-05-27 14:11:02 +0300
commit91c80d02e0434fd94f8f991c339eba016a180bc4 (patch)
tree50ae4a22f3084872415502ade319d6dc9e96944c /routing
parent8d996a12620779cbe76ebf1b66441c053f4f72f5 (diff)
[bicycle routing] Integration tests on a long bicycle route.
Diffstat (limited to 'routing')
-rw-r--r--routing/routing_integration_tests/bicycle_route_test.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/routing/routing_integration_tests/bicycle_route_test.cpp b/routing/routing_integration_tests/bicycle_route_test.cpp
index afcd96f95e..106fa99d9c 100644
--- a/routing/routing_integration_tests/bicycle_route_test.cpp
+++ b/routing/routing_integration_tests/bicycle_route_test.cpp
@@ -11,5 +11,12 @@ UNIT_TEST(RussiaMoscowSevTushinoParkPreferingBicycleWay)
{
integration::CalculateRouteAndTestRouteLength(
integration::GetBicycleComponents(), MercatorBounds::FromLatLon(55.87445, 37.43711), {0., 0.},
- MercatorBounds::FromLatLon(55.87203, 37.44274), 460.);
+ MercatorBounds::FromLatLon(55.87203, 37.44274), 460.0);
+}
+
+UNIT_TEST(RussiaMoscowNahimovskyLongRoute)
+{
+ integration::CalculateRouteAndTestRouteLength(
+ integration::GetBicycleComponents(), MercatorBounds::FromLatLon(55.66151, 37.63320), {0., 0.},
+ MercatorBounds::FromLatLon(55.67695, 37.56220), 6938.0);
}