ArgumentsSource |
@ArgumentsSource is a repeatable annotation
that is used to register argument providers
for the annotated test method.
|
ArgumentsSources |
@ArgumentsSources is a simple container for one or more
ArgumentsSource annotations.
|
CsvFileSource |
@CsvFileSource is an ArgumentsSource which is used to load
comma-separated value (CSV) files from one or more classpath resources .
|
CsvSource |
|
EmptySource |
@EmptySource is an ArgumentsSource which provides a single
empty argument to the annotated @ParameterizedTest method.
|
EnumSource |
|
MethodSource |
@MethodSource is an ArgumentsSource which provides access
to values returned from factory methods of the class in
which this annotation is declared or from static factory methods in external
classes referenced by fully qualified method name.
|
NullAndEmptySource |
|
NullSource |
@NullSource is an ArgumentsSource which provides a single
null argument to the annotated @ParameterizedTest method.
|
ValueSource |
@ValueSource is an ArgumentsSource which provides access to
an array of literal values.
|