Uses of Class
org.junit.jupiter.params.converter.ArgumentConversionException
-
Packages that use ArgumentConversionException Package Description org.junit.jupiter.params.converter ArgumentConverter
implementations and the corresponding@ConvertWith
annotation. -
-
Uses of ArgumentConversionException in org.junit.jupiter.params.converter
Methods in org.junit.jupiter.params.converter that throw ArgumentConversionException Modifier and Type Method Description Object
ArgumentConverter. convert(Object source, ParameterContext context)
Convert the suppliedsource
object according to the suppliedcontext
.protected abstract Object
SimpleArgumentConverter. convert(Object source, Class<?> targetType)
Convert the suppliedsource
object into the suppliedtargetType
.Object
SimpleArgumentConverter. convert(Object source, ParameterContext context)
Object
TypedArgumentConverter. convert(Object source, ParameterContext context)
protected abstract T
TypedArgumentConverter. convert(S source)
Convert the suppliedsource
object of type S into an object of type T.
-