Interface ReaderTests.SkipTests
-
- All Superinterfaces:
ReaderTests
- Enclosing interface:
- ReaderTests
@DisplayName("skip(long)") public static interface ReaderTests.SkipTests extends ReaderTests
Contains tests forReader.skip(long)
.- Author:
- Rob Spoor
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.github.robtimus.junit.support.test.io.ReaderTests
ReaderTests.MarkResetTests, ReaderTests.ReadCharTests, ReaderTests.ReadIntoCharArrayPortionTests, ReaderTests.ReadIntoCharArrayTests, ReaderTests.ReadIntoCharBufferTests, ReaderTests.ReadyTests, ReaderTests.SkipTests, ReaderTests.TransferToTests
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description boolean
allowNegativeSkip()
default void
testSkip()
default void
testSkipWithNegativeIndex()
default void
testSkipWithZeroIndex()
-
Methods inherited from interface com.github.robtimus.junit.support.test.io.ReaderTests
expectedContent, reader
-
-
-
-
Method Detail
-
allowNegativeSkip
boolean allowNegativeSkip()
-
testSkip
@Test @DisplayName("skip(long)") default void testSkip()
-
testSkipWithZeroIndex
@Test @DisplayName("skip(long) with a zero index") default void testSkipWithZeroIndex()
-
testSkipWithNegativeIndex
@Test @DisplayName("skip(long) with a negative index") default void testSkipWithNegativeIndex()
-
-