| 10 | void test_async_cv_notify_all(); |
| 11 | |
| 12 | int main() { |
| 13 | std::cout << "Starting async_condition_variable test" << std::endl; |
| 14 | std::cout << "================================" << std::endl; |
| 15 | |
| 16 | std::cout << "async_condition_variable::await test" << std::endl; |
| 17 | test_async_cv_await(); |
| 18 | std::cout << "================================" << std::endl; |
| 19 | |
| 20 | std::cout << "async_condition_variable::await(pred) test" << std::endl; |
| 21 | test_async_cv_await_pred(); |
| 22 | std::cout << "================================" << std::endl; |
| 23 | |
| 24 | std::cout << "async_condition_variable::notify_one test" << std::endl; |
| 25 | test_async_cv_notify_one(); |
| 26 | std::cout << "================================" << std::endl; |
| 27 | |
| 28 | std::cout << "async_condition_variable::notify_all test" << std::endl; |
| 29 | test_async_cv_notify_all(); |
| 30 | std::cout << "================================" << std::endl; |
| 31 | |
| 32 | std::cout << "done" << std::endl; |
| 33 | std::cout << "================================" << std::endl; |
| 34 | } |
| 35 | |
| 36 | using namespace concurrencpp; |
| 37 | using namespace std::chrono; |
nothing calls this directly
no test coverage detected