Uses of Interface
org.junit.jupiter.params.converter.ArgumentConverter
-
Packages that use ArgumentConverter Package Description org.junit.jupiter.params.converter ArgumentConverter
implementations and the corresponding@ConvertWith
annotation. -
-
Uses of ArgumentConverter in org.junit.jupiter.params.converter
Classes in org.junit.jupiter.params.converter that implement ArgumentConverter Modifier and Type Class Description class
DefaultArgumentConverter
DefaultArgumentConverter
is the default implementation of theArgumentConverter
API.class
SimpleArgumentConverter
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.class
TypedArgumentConverter<S,T>
TypedArgumentConverter
is an abstract base class forArgumentConverter
implementations that always convert objects of a given source type into a given target type.Methods in org.junit.jupiter.params.converter that return types with arguments of type ArgumentConverter Modifier and Type Method Description Class<? extends ArgumentConverter>
value()
The type ofArgumentConverter
to use.
-