| 200 | BOOST_AUTO_TEST_CASE(test_tile_ch_new_api) { test_tile_ch(false); } |
| 201 | |
| 202 | void test_tile_mld(bool use_string_only_api) |
| 203 | { |
| 204 | using namespace osrm; |
| 205 | auto osrm = getOSRM(OSRM_TEST_DATA_DIR "/mld/monaco.osrm", osrm::EngineConfig::Algorithm::MLD); |
| 206 | validate_tile(osrm, use_string_only_api); |
| 207 | } |
| 208 | BOOST_AUTO_TEST_CASE(test_tile_mld_old_api) { test_tile_mld(true); } |
| 209 | BOOST_AUTO_TEST_CASE(test_tile_mld_new_api) { test_tile_mld(false); } |
| 210 |
no test coverage detected