Test on building routes along piers.

This commit is contained in:
Vladimir Byko-Ianko 2018-03-16 15:32:24 +03:00 committed by Tatiana Yan
parent c02a75f9ce
commit b0916a05c8

View file

@ -371,4 +371,15 @@ namespace
Route const & route = *routeResult.first;
TEST_LESS(route.GetTotalTimeSec(), numeric_limits<double >::max() / 2.0, ());
}
// Test on routing along features with tag man_made:pier.
UNIT_TEST(CanadaVictoriaVancouverTest)
{
TRouteResult const routeResult =
integration::CalculateRoute(integration::GetVehicleComponents<VehicleType::Car>(),
MercatorBounds::FromLatLon(48.47831, -123.32749), {0.0, 0.0},
MercatorBounds::FromLatLon(49.26242, -123.11553));
IRouter::ResultCode const result = routeResult.second;
TEST_EQUAL(result, IRouter::NoError, ());
}
} // namespace