| 387 | using namespace concurrencpp::tests; |
| 388 | |
| 389 | int main() { |
| 390 | tester tester("thread_executor test"); |
| 391 | |
| 392 | tester.add_step("shutdown", test_thread_executor_shutdown); |
| 393 | tester.add_step("name", test_thread_executor_name); |
| 394 | tester.add_step("max_concurrency_level", test_thread_executor_max_concurrency_level); |
| 395 | tester.add_step("post", test_thread_executor_post); |
| 396 | tester.add_step("submit", test_thread_executor_submit); |
| 397 | tester.add_step("bulk_post", test_thread_executor_bulk_post); |
| 398 | tester.add_step("bulk_submit", test_thread_executor_bulk_submit); |
| 399 | tester.add_step("thread_callbacks", test_thread_executor_thread_callbacks); |
| 400 | |
| 401 | tester.launch_test(); |
| 402 | return 0; |
| 403 | } |
nothing calls this directly
no test coverage detected