| 478 | } |
| 479 | |
| 480 | void concurrencpp::tests::test_timer_cancel() { |
| 481 | test_timer_cancel_empty_timer(); |
| 482 | test_timer_cancel_dead_timer_queue(); |
| 483 | test_timer_cancel_before_due_time(); |
| 484 | test_timer_cancel_after_due_time_before_beat(); |
| 485 | test_timer_cancel_after_due_time_after_beat(); |
| 486 | test_timer_cancel_RAII(); |
| 487 | } |
| 488 | |
| 489 | void concurrencpp::tests::test_timer_operator_bool() { |
| 490 | auto timer_queue = std::make_shared<concurrencpp::timer_queue>(120s); |
nothing calls this directly
no outgoing calls
no test coverage detected