| 215 | using namespace concurrencpp::tests; |
| 216 | |
| 217 | int main() { |
| 218 | tester tester("coroutines test"); |
| 219 | |
| 220 | tester.add_step("recursive coroutines", test_recursive_coroutines); |
| 221 | tester.add_step("combo coroutine", test_combo_coroutine); |
| 222 | tester.add_step("lazy recursive coroutines", test_lazy_recursive_coroutines); |
| 223 | tester.add_step("lazy combo coroutine", test_lazy_combo_coroutine); |
| 224 | |
| 225 | tester.launch_test(); |
| 226 | return 0; |
| 227 | } |
nothing calls this directly
no test coverage detected