Annotation Type CsvSource
-
@Target({ANNOTATION_TYPE,METHOD}) @Retention(RUNTIME) @Documented @API(status=EXPERIMENTAL, since="5.0") @ArgumentsSource(org.junit.jupiter.params.provider.CsvArgumentsProvider.class) public @interface CsvSource
@CsvSource
is anArgumentsSource
which reads comma-separated values (CSV) from one or more supplied CSV lines.The supplied values will be provided as arguments to the annotated
@ParameterizedTest
method.- Since:
- 5.0
- See Also:
CsvFileSource
,ArgumentsSource
,ParameterizedTest
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description char
delimiter
The column delimiter to use when reading the lines.String
emptyValue
The empty value to use when reading the lines.
-
-
-
-
delimiter
char delimiter
The column delimiter to use when reading the lines.Defaults to
','
.- Default:
- ','
-
-