| 89 | |
| 90 | template <typename T> |
| 91 | void AssertGeneratorExhausted(AsyncGenerator<T>& gen) { |
| 92 | ASSERT_FINISHES_OK_AND_ASSIGN(auto next, gen()); |
| 93 | ASSERT_TRUE(IsIterationEnd(next)); |
| 94 | } |
| 95 | |
| 96 | // -------------------------------------------------------------------- |
| 97 | // Asynchronous iterator tests |
no test coverage detected