Interface InputStreamTests.ReadIntoByteArrayTests
-
- All Superinterfaces:
InputStreamTests
- Enclosing interface:
- InputStreamTests
@DisplayName("read(byte[])") public static interface InputStreamTests.ReadIntoByteArrayTests extends InputStreamTests
Contains tests forInputStream.read(byte[])
.- 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 Default Methods Modifier and Type Method Description default void
testReadIntoByteArray()
default void
testReadIntoByteArrayWithEmptyArray()
default void
testReadIntoByteArrayWithNullArray()
-
Methods inherited from interface com.github.robtimus.junit.support.test.io.InputStreamTests
expectedContent, inputStream
-
-
-
-
Method Detail
-
testReadIntoByteArray
@Test @DisplayName("read(byte[])") default void testReadIntoByteArray()
-
testReadIntoByteArrayWithEmptyArray
@Test @DisplayName("read(byte[]) with an empty array") default void testReadIntoByteArrayWithEmptyArray()
-
testReadIntoByteArrayWithNullArray
@Test @DisplayName("read(byte[]) with a null array") default void testReadIntoByteArrayWithNullArray()
-
-