| 658 | using namespace concurrencpp::tests; |
| 659 | |
| 660 | int main() { |
| 661 | tester test("timer test"); |
| 662 | |
| 663 | test.add_step("constructor", test_timer_constructor); |
| 664 | test.add_step("destructor", test_timer_destructor); |
| 665 | test.add_step("cancel", test_timer_cancel); |
| 666 | test.add_step("operator bool", test_timer_operator_bool); |
| 667 | test.add_step("set_frequency", test_timer_set_frequency); |
| 668 | test.add_step("oneshot_timer", test_timer_oneshot_timer); |
| 669 | test.add_step("delay_object", test_timer_delay_object); |
| 670 | test.add_step("operator =", test_timer_assignment_operator); |
| 671 | |
| 672 | test.launch_test(); |
| 673 | return 0; |
| 674 | } |
nothing calls this directly
no test coverage detected