Secondary should be preferred against residential.
| 16 | |
| 17 | // Secondary should be preferred against residential. |
| 18 | UNIT_TEST(StPetersburg_SideRoadPenalty_TurnTest) |
| 19 | { |
| 20 | TRouteResult const routeResult = integration::CalculateRoute(integration::GetVehicleComponents(VehicleType::Car), |
| 21 | mercator::FromLatLon(59.85157, 30.28033), {0., 0.}, |
| 22 | mercator::FromLatLon(59.84268, 30.27589)); |
| 23 | |
| 24 | Route const & route = *routeResult.first; |
| 25 | RouterResultCode const result = routeResult.second; |
| 26 | TEST_EQUAL(result, RouterResultCode::NoError, ()); |
| 27 | |
| 28 | integration::TestTurnCount(route, 0 /* expectedTurnCount */); |
| 29 | } |
| 30 | |
| 31 | UNIT_TEST(Russia_Moscow_Lenigradskiy39Uturn_TurnTest) |
| 32 | { |
nothing calls this directly
no test coverage detected