| 195 | */ |
| 196 | template <typename T> |
| 197 | void checkConstSliceValueAt(const Slice<T>& sl, typename Slice<T>::value_type value, size_t index) { |
| 198 | ASSERT_EQ(sl.at(index), value); |
| 199 | } |
| 200 | |
| 201 | /*! |
| 202 | * Check that the contents of the slice are ascending via an iterator based for |