Annotation Interface AddConfigSource


@Inherited @Retention(RUNTIME) @Target(METHOD) public @interface AddConfigSource
Mark a static method that provides a ConfigSource to add to the synthetic test configuration.

E.g.

 @AddConfigSource
 static ConfigSource config() {
     return MpConfigSources.create(Map.of("foo", "bar"));
 }
See Also: