| 204 | */ |
| 205 | template <typename T> |
| 206 | void checkConstSliceIterator(const Slice<T>& sl, typename Slice<T>::value_type first_value) { |
| 207 | for (auto it = sl.cbegin(); it < sl.cend(); ++it) { |
| 208 | ASSERT_EQ(*it, first_value++); |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | template <typename T> |
| 213 | void checkSubSlice(const Slice<T>& sl) { |
no test coverage detected