| 81 | |
| 82 | template <typename T> |
| 83 | inline void AssertIteratorExhausted(Iterator<T>& it) { |
| 84 | ASSERT_OK_AND_ASSIGN(T next, it.Next()); |
| 85 | ASSERT_TRUE(IsIterationEnd(next)); |
| 86 | } |
| 87 | |
| 88 | Transformer<TestInt, TestStr> MakeFilter(std::function<bool(TestInt&)> filter); |
| 89 |
no test coverage detected