public void GetData_WhenCalled_ThrowsException() { // arrange var sut = new CacheableDataReader(actualDataReader); // assert Assert.Throws<NotSupportedException>(() => sut.GetData(0)); // <- happy with this for now, super edge case I won't handle }