| Package | Description |
|---|---|
| org.junit.jupiter.params |
JUnit Jupiter extension for parameterized tests.
|
| org.junit.jupiter.params.converter |
ArgumentConverter
implementations and the corresponding
@ConvertWith annotation. |
| Class and Description |
|---|
ArgumentConverter
ArgumentConverter is an abstraction that allows an input object to
be converted to an instance of a different class. |
| Class and Description |
|---|
AnnotationBasedArgumentConverter
AnnotationBasedArgumentConverter is an abstract base class for
ArgumentConverter implementations that also need to consume an
annotation in order to perform the conversion. |
ArgumentConversionException
ArgumentConversionException is an exception that can occur when an
object is converted to another object by an implementation of an
ArgumentConverter. |
ArgumentConverter
ArgumentConverter is an abstraction that allows an input object to
be converted to an instance of a different class. |
ConvertWith
@ConvertWith is an annotation that allows one to specify an explicit
ArgumentConverter. |
DefaultArgumentConverter
DefaultArgumentConverter is the default implementation of the
ArgumentConverter API. |
JavaTimeConversionPattern
@JavaTimeConversionPattern is an annotation that allows a date/time
conversion pattern to be specified on a parameter of a
@ParameterizedTest method. |
| StringToObjectConverter
Internal API for converting arguments of type
String to a specified
target type. |