@Target(value={ANNOTATION_TYPE,METHOD}) @Retention(value=RUNTIME) @Documented @API(value=Experimental) @ArgumentsSource(value=org.junit.jupiter.params.provider.CsvArgumentsProvider.class) public @interface CsvSource
@CsvSource
is an ArgumentsSource
which reads
comma-separated values (CSV) from its value()
attribute.
The supplied values will be provided as arguments to the
annotated @ParameterizedTest
method.
ArgumentsSource
,
ParameterizedTest
public abstract String[] value
Each value corresponds to a line in a CSV file and will be split using
the specified delimiter()
.
public abstract char delimiter