| 9 | void test_result_resolve(std::shared_ptr<concurrencpp::thread_executor> te); |
| 10 | |
| 11 | int main() { |
| 12 | std::cout << "Starting concurrencpp::result test" << std::endl; |
| 13 | |
| 14 | concurrencpp::runtime runtime; |
| 15 | const auto thread_executor = runtime.thread_executor(); |
| 16 | |
| 17 | test_result_get(thread_executor); |
| 18 | test_result_wait(thread_executor); |
| 19 | test_result_wait_for(thread_executor); |
| 20 | test_result_await(thread_executor); |
| 21 | test_result_resolve(thread_executor); |
| 22 | } |
| 23 | |
| 24 | #include "utils/test_generators.h" |
| 25 | #include "utils/test_ready_result.h" |
nothing calls this directly
no test coverage detected