@FunctionalInterface @API(value=Experimental) public interface AfterAllExtensionPoint extends ExtensionPoint
AfterAllExtensionPoint defines the API for Extensions that wish to provide additional behavior to tests after
all test methods have been invoked.
Concrete implementations often implement BeforeAllExtensionPoint as well.
Implementations must provide a no-args constructor.
AfterAll,
BeforeAllExtensionPoint,
BeforeEachExtensionPoint,
AfterEachExtensionPoint| Modifier and Type | Method and Description |
|---|---|
void |
afterAll(ContainerExtensionContext context)
Callback that is invoked after all test methods have been invoked.
|
void afterAll(ContainerExtensionContext context) throws java.lang.Exception
context - the current container extension contextjava.lang.Exception