Package org.wildfly.test.cloud.common
Interface ExtraTestSetup
-
- All Known Implementing Classes:
ExtraTestSetup.None
public interface ExtraTestSetup
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classExtraTestSetup.None
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default List<KubernetesResource>beforeAll(org.junit.jupiter.api.extension.ExtensionContext context)Called during the beforeAll stage of each test.
-
-
-
Method Detail
-
beforeAll
default List<KubernetesResource> beforeAll(org.junit.jupiter.api.extension.ExtensionContext context)
Called during the beforeAll stage of each test. May or may not return any KubernetesResources. If it returns KubernetesResources, they will be added to the list in the test's WildFlyKubernetesIntegrationTest.kubernetesResources.- Parameters:
context-- Returns:
- the added resources. Must not be
null.
-
-