Package org.junit.jupiter.params
Interface ParameterizedDeclarationContext<C>
-
- All Known Implementing Classes:
ParameterizedClassContext,ParameterizedTestContext
interface ParameterizedDeclarationContext<C>- Since:
- 5.13
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CcreateInvocationContext(ParameterizedInvocationNameFormatter formatter, Arguments arguments, int invocationIndex)java.lang.reflect.AnnotatedElementgetAnnotatedElement()java.lang.annotation.AnnotationgetAnnotation()default java.lang.StringgetAnnotationName()ArgumentCountValidationModegetArgumentCountValidationMode()java.lang.StringgetDisplayNamePattern()ResolverFacadegetResolverFacade()java.lang.Class<?>getTestClass()booleanisAllowingZeroInvocations()booleanisAutoClosingArguments()
-
-
-
Method Detail
-
getTestClass
java.lang.Class<?> getTestClass()
-
getAnnotation
java.lang.annotation.Annotation getAnnotation()
-
getAnnotatedElement
java.lang.reflect.AnnotatedElement getAnnotatedElement()
-
getDisplayNamePattern
java.lang.String getDisplayNamePattern()
-
isAutoClosingArguments
boolean isAutoClosingArguments()
-
isAllowingZeroInvocations
boolean isAllowingZeroInvocations()
-
getArgumentCountValidationMode
ArgumentCountValidationMode getArgumentCountValidationMode()
-
getAnnotationName
default java.lang.String getAnnotationName()
-
getResolverFacade
ResolverFacade getResolverFacade()
-
createInvocationContext
C createInvocationContext(ParameterizedInvocationNameFormatter formatter, Arguments arguments, int invocationIndex)
-
-