| 9 | using namespace routing; |
| 10 | |
| 11 | UNIT_TEST(Transit_Moscow_CenterToKotelniki_CrossMwm) |
| 12 | { |
| 13 | TRouteResult routeResult = integration::CalculateRoute(integration::GetVehicleComponents(VehicleType::Transit), |
| 14 | mercator::FromLatLon(55.75018, 37.60971), {0.0, 0.0}, |
| 15 | mercator::FromLatLon(55.67245, 37.86130)); |
| 16 | TEST_EQUAL(routeResult.second, RouterResultCode::NoError, ()); |
| 17 | |
| 18 | integration::TestRouteLength(*routeResult.first, 22968.6); |
| 19 | |
| 20 | CHECK(routeResult.first, ()); |
| 21 | integration::CheckSubwayExistence(*routeResult.first); |
| 22 | } |
| 23 | |
| 24 | UNIT_TEST(Transit_Moscow_DubrovkaToTrtykovskya) |
| 25 | { |
nothing calls this directly
no test coverage detected