| 338 | using namespace concurrencpp::tests; |
| 339 | |
| 340 | int main() { |
| 341 | tester tester("inline_executor test"); |
| 342 | |
| 343 | tester.add_step("name", test_inline_executor_name); |
| 344 | tester.add_step("shutdown", test_inline_executor_shutdown); |
| 345 | tester.add_step("max_concurrency_level", test_inline_executor_max_concurrency_level); |
| 346 | tester.add_step("post", test_inline_executor_post); |
| 347 | tester.add_step("submit", test_inline_executor_submit); |
| 348 | tester.add_step("bulk_post", test_inline_executor_bulk_post); |
| 349 | tester.add_step("bulk_submit", test_inline_executor_bulk_submit); |
| 350 | |
| 351 | tester.launch_test(); |
| 352 | return 0; |
| 353 | } |
nothing calls this directly
no test coverage detected