Uses of Interface
org.junit.jupiter.api.extension.InvocationInterceptor
-
Packages that use InvocationInterceptor Package Description org.junit.jupiter.engine.execution Internal classes for test execution within the JUnit Jupiter test engine.org.junit.jupiter.engine.extension Test extensions specific to the JUnit Jupiter test engine. -
-
Uses of InvocationInterceptor in org.junit.jupiter.engine.execution
Fields in org.junit.jupiter.engine.execution declared as InvocationInterceptor Modifier and Type Field Description private InvocationInterceptor
InvocationInterceptorChain.InterceptedInvocation. interceptor
Fields in org.junit.jupiter.engine.execution with type parameters of type InvocationInterceptor Modifier and Type Field Description private java.util.List<InvocationInterceptor>
InvocationInterceptorChain.ValidatingInvocation. interceptors
Methods in org.junit.jupiter.engine.execution with parameters of type InvocationInterceptor Modifier and Type Method Description T
ExecutableInvoker.ReflectiveInterceptorCall. apply(InvocationInterceptor interceptor, InvocationInterceptor.Invocation<T> invocation, ReflectiveInvocationContext<E> invocationContext, ExtensionContext extensionContext)
void
ExecutableInvoker.ReflectiveInterceptorCall.VoidMethodInterceptorCall. apply(InvocationInterceptor interceptor, InvocationInterceptor.Invocation<java.lang.Void> invocation, ReflectiveInvocationContext<java.lang.reflect.Method> invocationContext, ExtensionContext extensionContext)
T
InvocationInterceptorChain.InterceptorCall. apply(InvocationInterceptor interceptor, InvocationInterceptor.Invocation<T> invocation)
void
InvocationInterceptorChain.VoidInterceptorCall. apply(InvocationInterceptor interceptor, InvocationInterceptor.Invocation<java.lang.Void> invocation)
Method parameters in org.junit.jupiter.engine.execution with type arguments of type InvocationInterceptor Modifier and Type Method Description private <T> T
InvocationInterceptorChain. chainAndInvoke(InvocationInterceptor.Invocation<T> invocation, InvocationInterceptorChain.InterceptorCall<T> call, java.util.List<InvocationInterceptor> interceptors)
private <T> InvocationInterceptor.Invocation<T>
InvocationInterceptorChain. chainInterceptors(InvocationInterceptor.Invocation<T> invocation, InvocationInterceptorChain.InterceptorCall<T> call, java.util.List<InvocationInterceptor> interceptors)
Constructors in org.junit.jupiter.engine.execution with parameters of type InvocationInterceptor Constructor Description InterceptedInvocation(InvocationInterceptor.Invocation<T> invocation, InvocationInterceptorChain.InterceptorCall<T> call, InvocationInterceptor interceptor)
Constructor parameters in org.junit.jupiter.engine.execution with type arguments of type InvocationInterceptor Constructor Description ValidatingInvocation(InvocationInterceptor.Invocation<T> delegate, java.util.List<InvocationInterceptor> interceptors)
-
Uses of InvocationInterceptor in org.junit.jupiter.engine.extension
Classes in org.junit.jupiter.engine.extension that implement InvocationInterceptor Modifier and Type Class Description (package private) class
TimeoutExtension
-