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:
authorMikhail Gorbushin <m.gorbushin@corp.mail.ru>2019-05-14 17:29:41 +0300
committerVladimir Byko-Ianko <bykoianko@gmail.com>2019-05-17 12:52:46 +0300
commit8d069e92879081c37736e26fd0c8df61ada704f8 (patch)
tree5dedfa2b76bd7d93dae038708c9022366ce01a6d /routing
parentb8bbf4abffd19b781f4f645f7ee95ba37fb2fb4f (diff)
[routing] add test for future
Diffstat (limited to 'routing')
-rw-r--r--routing/routing_integration_tests/route_test.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/routing/routing_integration_tests/route_test.cpp b/routing/routing_integration_tests/route_test.cpp
index 91658629f7..4abbf68a60 100644
--- a/routing/routing_integration_tests/route_test.cpp
+++ b/routing/routing_integration_tests/route_test.cpp
@@ -452,4 +452,23 @@ namespace
Route const & route = *routeResult.first;
TEST(route.CrossMwmsPartlyProhibitedForSpeedCams(), ());
}
+
+ // TODO (@gmoryes) uncomment this after many-via restrictions will be in mwms.
+ /*
+ UNIT_TEST(SpainRestirctionOnlyMany)
+ {
+ integration::CalculateRouteAndTestRouteLength(
+ integration::GetVehicleComponents(VehicleType::Car),
+ MercatorBounds::FromLatLon(43.38234, -5.67648), {0., 0.},
+ MercatorBounds::FromLatLon(43.38222, -5.69083), 8289.0);
+ }
+
+ UNIT_TEST(RussiaMoscowRestirctionOnlyMany)
+ {
+ integration::CalculateRouteAndTestRouteLength(
+ integration::GetVehicleComponents(VehicleType::Car),
+ MercatorBounds::FromLatLon(55.991578, 37.212476), {0., 0.},
+ MercatorBounds::FromLatLon(55.991845, 37.215312), 799.0);
+ }
+ */
} // namespace