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 protected abstract java.lang.Object
AnnotationBasedArgumentConverter. convert(java.lang.Object source, java.lang.Class<?> targetType, A annotation)
Convert the suppliedsource
object into the suppliedtargetType
, based on metadata in the provided annotation.java.lang.Object
AnnotationBasedArgumentConverter. convert(java.lang.Object source, ParameterContext context)
java.lang.Object
ArgumentConverter. convert(java.lang.Object source, ParameterContext context)
Convert the suppliedsource
object according to the suppliedcontext
.protected abstract java.lang.Object
SimpleArgumentConverter. convert(java.lang.Object source, java.lang.Class<?> targetType)
Convert the suppliedsource
object into the suppliedtargetType
.java.lang.Object
SimpleArgumentConverter. convert(java.lang.Object source, ParameterContext context)
java.lang.Object
TypedArgumentConverter. convert(java.lang.Object source, ParameterContext context)
protected abstract T
TypedArgumentConverter. convert(S source)
Convert the suppliedsource
object of typeS
into an object of typeT
.
-