Uses of Package
org.junit.jupiter.params.converter
Package
Description
ArgumentConverter
implementations and the corresponding
@ConvertWith
annotation.-
ClassDescription
ArgumentConversionException
is an exception that can occur when an object is converted to another object by an implementation of anArgumentConverter
.ArgumentConverter
is an abstraction that allows an input object to be converted to an instance of a different class.@ConvertWith
is an annotation that allows one to specify an explicitArgumentConverter
.DefaultArgumentConverter
is the default implementation of theArgumentConverter
API.SimpleArgumentConverter
is an abstract base class forArgumentConverter
implementations that only need to know the target type and do not need access to theParameterContext
to perform the conversion.