Module org.junit.jupiter.params
Package org.junit.jupiter.params.converter
package org.junit.jupiter.params.converter
ArgumentConverter
implementations and the corresponding
@ConvertWith annotation.-
Interface SummaryInterfaceDescription
ArgumentConverteris an abstraction that allows an input object to be converted to an instance of a different class. -
Class SummaryClassDescription
DefaultArgumentConverteris the default implementation of theArgumentConverterAPI.SimpleArgumentConverteris an abstract base class forArgumentConverterimplementations that only need to know the target type and do not need access to theParameterContextto perform the conversion.TypedArgumentConverter<S,T>TypedArgumentConverteris an abstract base class forArgumentConverterimplementations that always convert objects of a given source type into a given target type. -
Exception SummaryExceptionDescription
ArgumentConversionExceptionis an exception that can occur when an object is converted to another object by an implementation of anArgumentConverter. -
Annotation Interfaces SummaryAnnotation InterfaceDescription
@ConvertWithis an annotation that allows one to specify an explicitArgumentConverter.@JavaTimeConversionPatternis an annotation that allows a date/time conversion pattern to be specified on a parameter of a@ParameterizedTestmethod.