| 223 | } |
| 224 | |
| 225 | int main() { |
| 226 | tester tester("async_condition_variable test"); |
| 227 | |
| 228 | tester.add_step("await", test_async_condition_variable_await); |
| 229 | tester.add_step("await + pred", test_async_condition_variable_await_pred); |
| 230 | tester.add_step("notify_one", test_async_condition_variable_notify_one); |
| 231 | tester.add_step("notify_all", test_async_condition_variable_notify_all); |
| 232 | |
| 233 | tester.launch_test(); |
| 234 | return 0; |
| 235 | } |
nothing calls this directly
no test coverage detected