Uses of Interface
org.junit.jupiter.api.extension.InvocationInterceptor.Invocation
-
Packages that use InvocationInterceptor.Invocation Package Description org.junit.jupiter.api.extension JUnit Jupiter API for writing extensions.org.junit.jupiter.engine.execution Internal classes for test execution within the JUnit Jupiter test engine. -
-
Uses of InvocationInterceptor.Invocation in org.junit.jupiter.api.extension
Methods in org.junit.jupiter.api.extension with parameters of type InvocationInterceptor.Invocation Modifier and Type Method Description default voidInvocationInterceptor. interceptAfterAllMethod(InvocationInterceptor.Invocation<Void> invocation, ReflectiveInvocationContext<Method> invocationContext, ExtensionContext extensionContext)Intercept the invocation of an@AfterAllmethod.default voidInvocationInterceptor. interceptAfterEachMethod(InvocationInterceptor.Invocation<Void> invocation, ReflectiveInvocationContext<Method> invocationContext, ExtensionContext extensionContext)Intercept the invocation of an@AfterEachmethod.default voidInvocationInterceptor. interceptBeforeAllMethod(InvocationInterceptor.Invocation<Void> invocation, ReflectiveInvocationContext<Method> invocationContext, ExtensionContext extensionContext)Intercept the invocation of a@BeforeAllmethod.default voidInvocationInterceptor. interceptBeforeEachMethod(InvocationInterceptor.Invocation<Void> invocation, ReflectiveInvocationContext<Method> invocationContext, ExtensionContext extensionContext)Intercept the invocation of a@BeforeEachmethod.default voidInvocationInterceptor. interceptDynamicTest(InvocationInterceptor.Invocation<Void> invocation, ExtensionContext extensionContext)Intercept the invocation of aDynamicTest.default <T> TInvocationInterceptor. interceptTestClassConstructor(InvocationInterceptor.Invocation<T> invocation, ReflectiveInvocationContext<Constructor<T>> invocationContext, ExtensionContext extensionContext)Intercept the invocation of a test class constructor.default <T> TInvocationInterceptor. interceptTestFactoryMethod(InvocationInterceptor.Invocation<T> invocation, ReflectiveInvocationContext<Method> invocationContext, ExtensionContext extensionContext)Intercept the invocation of a@TestFactorymethod.default voidInvocationInterceptor. interceptTestMethod(InvocationInterceptor.Invocation<Void> invocation, ReflectiveInvocationContext<Method> invocationContext, ExtensionContext extensionContext)Intercept the invocation of a@Testmethod.default voidInvocationInterceptor. interceptTestTemplateMethod(InvocationInterceptor.Invocation<Void> invocation, ReflectiveInvocationContext<Method> invocationContext, ExtensionContext extensionContext)Intercept the invocation of a@TestTemplatemethod. -
Uses of InvocationInterceptor.Invocation in org.junit.jupiter.engine.execution
Methods in org.junit.jupiter.engine.execution with parameters of type InvocationInterceptor.Invocation Modifier and Type Method Description TExecutableInvoker.ReflectiveInterceptorCall. apply(InvocationInterceptor interceptor, InvocationInterceptor.Invocation<T> invocation, ReflectiveInvocationContext<E> invocationContext, ExtensionContext extensionContext)voidExecutableInvoker.ReflectiveInterceptorCall.VoidMethodInterceptorCall. apply(InvocationInterceptor interceptor, InvocationInterceptor.Invocation<Void> invocation, ReflectiveInvocationContext<Method> invocationContext, ExtensionContext extensionContext)TInvocationInterceptorChain.InterceptorCall. apply(InvocationInterceptor interceptor, InvocationInterceptor.Invocation<T> invocation)voidInvocationInterceptorChain.VoidInterceptorCall. apply(InvocationInterceptor interceptor, InvocationInterceptor.Invocation<Void> invocation)<T> TInvocationInterceptorChain. invoke(InvocationInterceptor.Invocation<T> invocation, ExtensionRegistry extensionRegistry, InvocationInterceptorChain.InterceptorCall<T> call)
-