Module org.junit.jupiter.params
Annotation Interface ValueSources
@Target(METHOD)
@Retention(RUNTIME)
@Documented
@API(status=STABLE,
since="5.11")
public @interface ValueSources
@ValueSources
is a simple container for one or more
ValueSource
annotations.
Note, however, that use of the @ValueSources
container is completely
optional since @ValueSource
is a repeatable annotation.
- Since:
- 5.11
- See Also:
-
Required Element Summary
-
Element Details
-
value
ValueSource[] valueAn array of one or more@ValueSource
annotations.
-