Uses of Package
org.junit.jupiter.params.provider
Packages that use org.junit.jupiter.params.provider
Package
Description
JUnit Jupiter extension for parameterized tests.
ArgumentsProvider
implementations and their corresponding
ArgumentsSource
annotations.-
Classes in org.junit.jupiter.params.provider used by org.junit.jupiter.paramsClassDescription
Arguments
is an abstraction that provides access to an array of objects to be used for invoking a@ParameterizedTest
method.AnArgumentsProvider
is responsible for providing a stream of arguments to be passed to a@ParameterizedTest
method. -
Classes in org.junit.jupiter.params.provider used by org.junit.jupiter.params.providerClassDescription
AnnotationBasedArgumentsProvider
is an abstract base class forArgumentsProvider
implementations that also need to consume an annotation in order to provide the arguments.Arguments
is an abstraction that provides access to an array of objects to be used for invoking a@ParameterizedTest
method.AnArgumentsProvider
is responsible for providing a stream of arguments to be passed to a@ParameterizedTest
method.@ArgumentsSource
is a repeatable annotation that is used to register argument providers for the annotated test method.@CsvFileSource
is anArgumentsSource
which is used to load comma-separated value (CSV) files from one or more classpathCsvFileSource.resources()
orCsvFileSource.files()
.@CsvSource
is anArgumentsSource
which reads comma-separated values (CSV) from one or more CSV records supplied via theCsvSource.value()
attribute orCsvSource.textBlock()
attribute.@EmptySource
is anArgumentsSource
which provides a single empty argument to the annotated@ParameterizedTest
method.Enumeration of modes for selecting enum constants by name.@MethodSource
is anArgumentsSource
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.Dummy enum class used as default value for optional attributes of annotations.@NullSource
is anArgumentsSource
which provides a singlenull
argument to the annotated@ParameterizedTest
method.@ValueSource
is anArgumentsSource
which provides access to an array of literal values.