Uses of Interface
org.junit.jupiter.api.extension.ParameterContext
-
Packages that use ParameterContext Package Description org.junit.jupiter.api.extension JUnit Jupiter API for writing extensions.org.junit.jupiter.params.converter ArgumentConverter
implementations and their correspondingConvertWith
annotations. -
-
Uses of ParameterContext in org.junit.jupiter.api.extension
Methods in org.junit.jupiter.api.extension with parameters of type ParameterContext Modifier and Type Method Description java.lang.Object
ParameterResolver. resolveParameter(ParameterContext parameterContext, ExtensionContext extensionContext)
Resolve an argument for theParameter
in the suppliedParameterContext
for the suppliedExtensionContext
.boolean
ParameterResolver. supportsParameter(ParameterContext parameterContext, ExtensionContext extensionContext)
Determine if this resolver supports resolution of an argument for theParameter
in the suppliedParameterContext
for the suppliedExtensionContext
. -
Uses of ParameterContext in org.junit.jupiter.params.converter
Methods in org.junit.jupiter.params.converter with parameters of type ParameterContext Modifier and Type Method Description java.lang.Object
ArgumentConverter. convert(java.lang.Object source, ParameterContext context)
Convert the suppliedsource
object according to the suppliedcontext
.java.lang.Object
SimpleArgumentConverter. convert(java.lang.Object source, ParameterContext context)
-