| 137 | |
| 138 | template <typename T> |
| 139 | void AssertIteratorNoMatch(std::vector<T> expected, Iterator<T> actual) { |
| 140 | EXPECT_NE(expected, IteratorToVector(std::move(actual))); |
| 141 | } |
| 142 | |
| 143 | template <typename T> |
| 144 | void AssertIteratorNext(T expected, Iterator<T>& it) { |
no test coverage detected