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