Interface InputStreamTests.SkipTests
-
- All Superinterfaces:
InputStreamTests
- Enclosing interface:
- InputStreamTests
@DisplayName("skip(long)") public static interface InputStreamTests.SkipTests extends InputStreamTests
Contains tests forInputStream.skip(long)
.- Author:
- Rob Spoor
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.github.robtimus.junit.support.test.io.InputStreamTests
InputStreamTests.AvailableTests, InputStreamTests.MarkResetTests, InputStreamTests.ReadAllBytesTests, InputStreamTests.ReadByteTests, InputStreamTests.ReadIntoByteArrayPortionTests, InputStreamTests.ReadIntoByteArrayTests, InputStreamTests.ReadNBytesIntoByteArrayPortionTests, InputStreamTests.ReadNBytesTests, InputStreamTests.SkipTests, InputStreamTests.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.InputStreamTests
expectedContent, inputStream
-
-
-
-
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()
-
-