@Target(value={ANNOTATION_TYPE,METHOD}) @Retention(value=RUNTIME) @Documented @API(value=Maintained) public @interface AfterAll
@AfterAll
is used to signal that the annotated method should be
executed after all tests in the current test class.
In contrast to @AfterEach
methods, @AfterAll
methods are only executed once for a given test class.
@AfterAll
methods must not be private
and must be
static
. Consequently, @AfterAll
methods are not supported
in @Nested
test classes or as interface default methods.
@AfterAll
methods may optionally declare parameters to be resolved by
ParameterResolvers
.
@AfterAll
methods are inherited from superclasses as long as
they are not shadowed. Furthermore, @AfterAll
methods from
superclasses will be executed after @AfterAll
methods in subclasses.
@AfterAll
may be used as a meta-annotation in order to create
a custom composed annotation that inherits the semantics of
@AfterAll
.
BeforeAll
,
BeforeEach
,
AfterEach
,
Test