Annotation Type AfterTestClass
@Retention(RUNTIME) @Target({METHOD,ANNOTATION_TYPE}) @Documented @EventListener(AfterTestClassEvent.class) public @interface AfterTestClass
@EventListenerannotation used to consume aAfterTestClassEventpublished by theEventPublishingTestExecutionListener.This annotation may be used on
@EventListener-compliant methods within a Spring testApplicationContext— for example, on methods in a@Configurationclass. A method annotated with this annotation will be invoked as part of theTestExecutionListener.afterTestClass(org.springframework.test.context.TestContext)lifecycle.Event processing can optionally be made conditional via a SpEL expression — for example,
@AfterTestClass("event.testContext.testClass.name matches '.+IntegrationTests'").The
EventPublishingTestExecutionListenermust be registered in order for this annotation to have an effect — for example, via@TestExecutionListeners.- Since:
- 5.2
- Author:
- Frank Scheffler, Sam Brannen
- See Also:
AfterTestClassEvent
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description StringvalueAlias forEventListener.condition().
Element Detail
value
@AliasFor(annotation=EventListener.class, attribute="condition") String value
Alias forEventListener.condition().- Default:
- ""