Module org.junitpioneer
Annotation Type CartesianArgumentsSource
-
@Target({ANNOTATION_TYPE,PARAMETER}) @Retention(RUNTIME) @Documented public @interface CartesianArgumentsSource@CartesianArgumentsSourceis an annotation that is used to register cartesian argument providers for the annotated test parameter in case ofCartesianParameterArgumentsProvideror for all the test parameters in case ofCartesianMethodArgumentsProvider.@CartesianArgumentsSourcemay also be used as a meta-annotation in order to create a custom composed annotation that inherits the semantics of@CartesianArgumentsSource.This annotation is used to provide arguments for a
CartesianTest.- See Also:
CartesianTest
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.Class<? extends CartesianArgumentsProvider>valueThe type ofCartesianArgumentsProviderto be used.
-
-
-
Element Detail
-
value
java.lang.Class<? extends CartesianArgumentsProvider> value
The type ofCartesianArgumentsProviderto be used.
-
-