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