| 275 | } |
| 276 | |
| 277 | TEST(pointerSlice, failedConstructionFromNullpointer) { |
| 278 | ASSERT_THROW(Slice<long*>(nullptr, 1, 2), std::invalid_argument); |
| 279 | } |
| 280 | |
| 281 | /*! |
| 282 | * Test the construction of an invalid slices from a container (so that a proper |
nothing calls this directly
no test coverage detected