Interface ReaderTests.ReadIntoCharArrayTests
-
- All Superinterfaces:
ReaderTests
- Enclosing interface:
- ReaderTests
@DisplayName("read(char[])") public static interface ReaderTests.ReadIntoCharArrayTests extends ReaderTests
Contains tests forReader.read(char[])
.- Author:
- Rob Spoor
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.github.robtimus.junit.support.test.io.ReaderTests
ReaderTests.MarkResetTests, ReaderTests.ReadCharTests, ReaderTests.ReadIntoCharArrayPortionTests, ReaderTests.ReadIntoCharArrayTests, ReaderTests.ReadIntoCharBufferTests, ReaderTests.ReadyTests, ReaderTests.SkipTests, ReaderTests.TransferToTests
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
testReadIntoCharArray()
default void
testReadIntoCharArrayWithEmptyArray()
default void
testReadIntoCharArrayWithNullArray()
-
Methods inherited from interface com.github.robtimus.junit.support.test.io.ReaderTests
expectedContent, reader
-
-
-
-
Method Detail
-
testReadIntoCharArray
@Test @DisplayName("read(char[])") default void testReadIntoCharArray()
-
testReadIntoCharArrayWithEmptyArray
@Test @DisplayName("read(char[]) with an empty array") default void testReadIntoCharArrayWithEmptyArray()
-
testReadIntoCharArrayWithNullArray
@Test @DisplayName("read(char[]) with a null array") default void testReadIntoCharArrayWithNullArray()
-
-