@Target(value={ANNOTATION_TYPE,METHOD}) @Retention(value=RUNTIME) @Documented @API(value=Experimental) @ArgumentsSource(value=org.junit.jupiter.params.provider.CsvFileArgumentsProvider.class) public @interface CsvFileSource
@CsvFileSource
is an ArgumentsSource
which is used to
load comma-separated values (CSV) files from one or more classpath resources.
The lines of these CSV files will be provided as arguments to the
annotated @ParameterizedTest
method.
ArgumentsSource
,
ParameterizedTest
Modifier and Type | Required Element and Description |
---|---|
String[] |
resources
The CSV classpath resources to use as the sources of arguments; must not be
empty.
|
Modifier and Type | Optional Element and Description |
---|---|
char |
delimiter
The column delimiter to use when reading the CSV files.
|
String |
encoding
The encoding to use when reading the CSV files; must be a valid charset.
|
String |
lineSeparator
The line separator to use when reading the CSV files; must consist of 1
or 2 characters.
|
public abstract String[] resources
public abstract String encoding
Defaults to "UTF-8"
.
StandardCharsets
public abstract String lineSeparator
Defaults to "\n"
.