Interface InputStreamTests.TransferToTests
-
- All Superinterfaces:
InputStreamTests
- Enclosing interface:
- InputStreamTests
@DisplayName("transferTo(OutputStream)") public static interface InputStreamTests.TransferToTests extends InputStreamTests
Contains tests forInputStream.transferTo(OutputStream)
.- 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
testTransferToAfterConsumingStream()
default void
testTransferToAfterReading10Bytes()
default void
testTransferToReadAllBytes()
-
Methods inherited from interface com.github.robtimus.junit.support.test.io.InputStreamTests
expectedContent, inputStream
-
-
-
-
Method Detail
-
testTransferToReadAllBytes
@Test @DisplayName("transferTo(OutputStream) from the start") default void testTransferToReadAllBytes()
-
testTransferToAfterReading10Bytes
@Test @DisplayName("transferTo(OutputStream) after having read 10 bytes") default void testTransferToAfterReading10Bytes()
-
testTransferToAfterConsumingStream
@Test @DisplayName("transferTo(OutputStream) after everything has already been consumed") default void testTransferToAfterConsumingStream()
-
-