| 338 | } |
| 339 | |
| 340 | void test_tile_turns_mld(bool use_string_only_api) |
| 341 | { |
| 342 | using namespace osrm; |
| 343 | auto osrm = getOSRM(OSRM_TEST_DATA_DIR "/mld/monaco.osrm", osrm::EngineConfig::Algorithm::MLD); |
| 344 | |
| 345 | test_tile_turns(osrm, use_string_only_api); |
| 346 | } |
| 347 | BOOST_AUTO_TEST_CASE(test_tile_turns_mld_old_api) { test_tile_turns_mld(true); } |
| 348 | BOOST_AUTO_TEST_CASE(test_tile_turns_mld_new_api) { test_tile_turns_mld(false); } |
| 349 |
no test coverage detected