| 132 | |
| 133 | template <typename T> |
| 134 | void AssertIteratorMatch(std::vector<T> expected, Iterator<T> actual) { |
| 135 | EXPECT_EQ(expected, IteratorToVector(std::move(actual))); |
| 136 | } |
| 137 | |
| 138 | template <typename T> |
| 139 | void AssertIteratorNoMatch(std::vector<T> expected, Iterator<T> actual) { |
no test coverage detected