| 211 | |
| 212 | template <typename T> |
| 213 | void checkSubSlice(const Slice<T>& sl) { |
| 214 | ASSERT_EQ(sl.at(1), sl.subSlice(1, sl.size()).at(0)); |
| 215 | } |
| 216 | |
| 217 | /*! |
| 218 | * Test that all slices can be also passed as const references and still work |
no test coverage detected