Class Arguments.ArgumentSet
- java.lang.Object
-
- org.junit.jupiter.params.provider.Arguments.ArgumentSet
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.junit.jupiter.params.provider.Arguments
Arguments.ArgumentSet
-
-
Constructor Summary
Constructors Modifier Constructor Description privateArgumentSet(java.lang.String name, java.lang.Object[] arguments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object[]get()Get the arguments used for an invocation of the@ParameterizedTestmethod.java.lang.StringgetName()Get the name of thisArgumentSet.java.lang.StringtoString()Return thenameof thisArgumentSet.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Get the name of thisArgumentSet.- Returns:
- the name of this
ArgumentSet; nevernullor blank
-
get
public java.lang.Object[] get()
Description copied from interface:ArgumentsGet the arguments used for an invocation of the@ParameterizedTestmethod.
-
toString
public java.lang.String toString()
Return thenameof thisArgumentSet.- Overrides:
toStringin classjava.lang.Object- Returns:
- the name of this
ArgumentSet
-
-