Interface InputStreamTests.ReadAllBytesTests
-
- All Superinterfaces:
InputStreamTests
- Enclosing interface:
- InputStreamTests
@DisplayName("readAllBytes()") public static interface InputStreamTests.ReadAllBytesTests extends InputStreamTests
Contains tests forInputStream.readAllBytes()
.- Author:
- Rob Spoor
- Since:
- 3.0
-
-
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 Default Methods Modifier and Type Method Description default void
testReadAllBytes()
default void
testReadAllBytesAfterConsumingStream()
default void
testReadAllBytesAfterReading10Bytes()
-
Methods inherited from interface com.github.robtimus.junit.support.test.io.InputStreamTests
expectedContent, inputStream
-
-
-
-
Method Detail
-
testReadAllBytes
@Test @DisplayName("readAllBytes() from the start") default void testReadAllBytes()
-
testReadAllBytesAfterReading10Bytes
@Test @DisplayName("readAllBytes() after having read 10 bytes") default void testReadAllBytesAfterReading10Bytes()
-
testReadAllBytesAfterConsumingStream
@Test @DisplayName("readAllBytes() after everything has already been consumed") default void testReadAllBytesAfterConsumingStream()
-
-