MCPcopy Create free account
hub / github.com/David-Haim/concurrencpp / main

Function main

test/source/tests/timer_tests/timer_tests.cpp:660–674  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

658using namespace concurrencpp::tests;
659
660int 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}

Callers

nothing calls this directly

Calls 2

add_stepMethod · 0.80
launch_testMethod · 0.80

Tested by

no test coverage detected