| 655 | using namespace concurrencpp::tests; |
| 656 | |
| 657 | int main() { |
| 658 | tester tester("task test"); |
| 659 | |
| 660 | tester.add_step("constructor", test_task_constructor); |
| 661 | tester.add_step("move constructor", test_task_move_constructor); |
| 662 | tester.add_step("destructor", test_task_destructor); |
| 663 | tester.add_step("operator()", test_task_call_operator); |
| 664 | tester.add_step("clear", test_task_clear); |
| 665 | tester.add_step("operator =", test_task_assignment_operator); |
| 666 | |
| 667 | tester.launch_test(); |
| 668 | return 0; |
| 669 | } |
nothing calls this directly
no test coverage detected