Package org.junit.jupiter.api.extension
Interface InvocationInterceptor.Invocation<T>
-
- Type Parameters:
T
- the result type
- Enclosing interface:
- InvocationInterceptor
@API(status=EXPERIMENTAL, since="5.5") public static interface InvocationInterceptor.Invocation<T>
An invocation that returns a result and may throw aThrowable
.This interface is not intended to be implemented by clients.
- Since:
- 5.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
proceed()
Proceed with this invocation.
-