Interface BeforeClassTemplateInvocationCallback
-
- All Superinterfaces:
Extension
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface @API(status=MAINTAINED, since="5.13.3") public interface BeforeClassTemplateInvocationCallback extends ExtensionBeforeClassTemplateInvocationCallbackdefines the API forExtensionsthat wish to provide additional behavior once before each invocation of a@ClassTemplate.Concrete implementations often implement
AfterClassTemplateInvocationCallbackas well.Constructor Requirements
Consult the documentation in
Extensionfor details on constructor requirements.Wrapping Behavior
JUnit Jupiter guarantees wrapping behavior for multiple registered extensions that implement lifecycle callbacks such as
BeforeAllCallback,AfterAllCallback,BeforeClassTemplateInvocationCallback,AfterClassTemplateInvocationCallback,BeforeEachCallback,AfterEachCallback,BeforeTestExecutionCallback, andAfterTestExecutionCallback.That means that, given two extensions
Extension1andExtension2withExtension1registered beforeExtension2, any "before" callbacks implemented byExtension1are guaranteed to execute before any "before" callbacks implemented byExtension2. Similarly, given the two same two extensions registered in the same order, any "after" callbacks implemented byExtension1are guaranteed to execute after any "after" callbacks implemented byExtension2.Extension1is therefore said to wrapExtension2.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbeforeClassTemplateInvocation(ExtensionContext context)Callback that is invoked before each invocation of a container template.
-
-
-
Method Detail
-
beforeClassTemplateInvocation
void beforeClassTemplateInvocation(ExtensionContext context) throws java.lang.Exception
Callback that is invoked before each invocation of a container template.- Parameters:
context- the current extension context; nevernull- Throws:
java.lang.Exception
-
-