Annotation Type ConfigurationSource


  • @Documented
    @Target({ANNOTATION_TYPE,METHOD})
    @Retention(RUNTIME)
    public @interface ConfigurationSource
    ConfigurationSource is an annotation used to register configuration providers for the annotated test method.

    This may also be used as a meta-annotation in order to create a custom composed annotation that inherits the semantics of ConfigurationSource (demonstrated by ConfigurationFromMethod).

    This is more or less a copy of org.junit.jupiter.params.provider.ArgumentsSource from the junit-jupiter-params project.