| 145 | using namespace concurrencpp::tests; |
| 146 | |
| 147 | int main() { |
| 148 | tester test("timer_queue test"); |
| 149 | |
| 150 | test.add_step("make_timer", test_timer_queue_make_timer); |
| 151 | test.add_step("make_oneshot_timer", test_timer_queue_make_timer); |
| 152 | test.add_step("make_delay_object", test_timer_queue_make_delay_object); |
| 153 | test.add_step("max_worker_idle_time", test_timer_queue_max_worker_idle_time); |
| 154 | test.add_step("thread_injection", test_timer_queue_thread_injection); |
| 155 | test.add_step("thread_callbacks", test_timer_queue_thread_callbacks); |
| 156 | |
| 157 | test.launch_test(); |
| 158 | return 0; |
| 159 | } |
nothing calls this directly
no test coverage detected