Interface OutputStreamDelegateTests.WriteByteArrayTests
-
- All Superinterfaces:
OutputStreamDelegateTests
- Enclosing interface:
- OutputStreamDelegateTests
@DisplayName("write(byte[])") public static interface OutputStreamDelegateTests.WriteByteArrayTests extends OutputStreamDelegateTests
Contains tests forOutputStream.write(byte[])
.- Author:
- Rob Spoor
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.github.robtimus.junit.support.test.io.OutputStreamDelegateTests
OutputStreamDelegateTests.CloseTests, OutputStreamDelegateTests.FlushTests, OutputStreamDelegateTests.WriteByteArrayPortionTests, OutputStreamDelegateTests.WriteByteArrayTests, OutputStreamDelegateTests.WriteByteTests
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
testWriteByteArray()
default void
testWriteByteArrayWithEmptyArray()
default void
testWriteByteArrayWithLargeArray()
default void
testWriteByteArrayWithNullArray()
-
Methods inherited from interface com.github.robtimus.junit.support.test.io.OutputStreamDelegateTests
contentToWrite, expectedContent, longContentToWrite, wrapOutputStream
-
-
-
-
Method Detail
-
testWriteByteArray
@Test @DisplayName("write(byte[])") default void testWriteByteArray()
-
testWriteByteArrayWithLargeArray
@Test @DisplayName("write(byte[]) with a large array") default void testWriteByteArrayWithLargeArray()
-
testWriteByteArrayWithEmptyArray
@Test @DisplayName("write(byte[]) with an empty array") default void testWriteByteArrayWithEmptyArray()
-
testWriteByteArrayWithNullArray
@Test @DisplayName("write(byte[]) with a null array") default void testWriteByteArrayWithNullArray()
-
-