Open
Description
Problems with CsvFileSource
:
- Long arguments either have to be on the same line separated by
delimiter
, or indented manually usingquoteCharacter
. Neither option is very legible. - No way to set
delimiter
as OS-specific newline. Even if delimiter is hard coded as\n
, theCsvFileArgumentsProvider
fails to parse the file such thatArguments.get.length
matches the number of formal parameters in the test method.
Deliverables
- A
FileSource
that delimits arguments by any newline character/string, same as BufferedReader.readLine(). I've implemented one for a personal project, and can make a PR. - Alternatively, make
CsvFileSource.delimiter
readn
lines intoArguments
each time, wheren
is the the number of formal parameters in the test method.