Annotation Type GeneratorSource


  • @Documented
    @Target({ANNOTATION_TYPE,METHOD})
    @Retention(RUNTIME)
    public @interface GeneratorSource
    GeneratorSource is an annotation used to register generator 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 GeneratorSource (demonstrated by EnableGeneration).

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