| 8 | BOOST_AUTO_TEST_SUITE(library_customize) |
| 9 | |
| 10 | BOOST_AUTO_TEST_CASE(test_customize_with_invalid_config) |
| 11 | { |
| 12 | using namespace osrm; |
| 13 | |
| 14 | osrm::CustomizationConfig config; |
| 15 | config.requested_num_threads = std::thread::hardware_concurrency(); |
| 16 | BOOST_CHECK_THROW(osrm::customize(config), |
| 17 | std::exception); // including osrm::util::exception, etc. |
| 18 | } |
| 19 | |
| 20 | BOOST_AUTO_TEST_SUITE_END() |
nothing calls this directly
no test coverage detected