refactor: change formatting of `should_readFirstDiagram_decode_correctly_different_line_endings` for more readability

This commit is contained in:
The-Lum 2023-08-28 15:01:45 +00:00
parent 0c7f026f6c
commit 90198c40d8
1 changed files with 6 additions and 3 deletions

View File

@ -217,12 +217,15 @@ class PipeTest {
}
@ParameterizedTest
@ValueSource(strings = { "ab\nc", // *nix, macOsX
@ValueSource(strings = {
"ab\nc", // *nix, macOsX
"ab\rc", // pre-macOsX macs
"ab\r\nc", // Windows
// the case \n\r is handled as 2 new lines, thus not added
"ab\nc\n", "ab\nc\r", "ab\nc\r\n" })
"ab\nc\n",
"ab\nc\r",
"ab\nc\r\n"
})
void should_readFirstDiagram_decode_correctly_different_line_endings(String input) throws IOException {
pipe = new Pipe(option, null, new ByteArrayInputStream(input.getBytes(UTF_8)), UTF_8.name());