/*
* Copyright 2015-2019 the original author or authors.
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v2.0 which
* accompanies this distribution and is available at
*
* http://www.eclipse.org/legal/epl-v20.html
*/
package org.junit.jupiter.api;
import static org.apiguardian.api.API.Status.STABLE;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.apiguardian.api.API;
@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.
Method Signatures
@AfterAll
methods must have a void
return type, must not be private
, and must be static
by default. Consequently, @AfterAll
methods are not supported in @Nested
test classes or as interface default
methods unless the test class is annotated with @TestInstance(Lifecycle.PER_CLASS)
. @AfterAll
methods may optionally declare parameters to be resolved by ParameterResolvers
.
Inheritance and Execution Order
@AfterAll
methods are inherited from superclasses as long as they are not hidden or overridden. Furthermore, @AfterAll
methods from superclasses will be executed after @AfterAll
methods in subclasses.
Similarly, @AfterAll
methods declared in an interface are inherited as long as they are not hidden or overridden, and @AfterAll
methods from an interface will be executed after @AfterAll
methods in the class that implements the interface.
JUnit Jupiter does not guarantee the execution order of multiple @AfterAll
methods that are declared within a single test class or test interface. While it may at times appear that these methods are invoked in alphabetical order, they are in fact sorted using an algorithm that is deterministic but intentionally non-obvious.
In addition, @AfterAll
methods are in no way linked to @BeforeAll
methods. Consequently, there are no guarantees with regard to their wrapping behavior. For example, given two @BeforeAll
methods createA()
and createB()
as well as two @AfterAll
methods destroyA()
and destroyB()
, the order in which the @BeforeAll
methods are executed (e.g. createA()
before createB()
) does not imply any order for the seemingly corresponding @AfterAll
methods. In other words, destroyA()
might be called before or after destroyB()
. The JUnit Team therefore recommends that developers declare at most one @BeforeAll
method and at most one @AfterAll
method per test class or test interface unless there are no dependencies between the @BeforeAll
methods or between the @AfterAll
methods.
Composition
@AfterAll
may be used as a meta-annotation in order to create a custom composed annotation that inherits the semantics of @AfterAll
.
See Also: Since: 5.0
/**
* {@code @AfterAll} is used to signal that the annotated method should be
* executed <em>after</em> <strong>all</strong> tests in the current test class.
*
* <p>In contrast to {@link AfterEach @AfterEach} methods, {@code @AfterAll}
* methods are only executed once for a given test class.
*
* <h3>Method Signatures</h3>
*
* <p>{@code @AfterAll} methods must have a {@code void} return type,
* must not be {@code private}, and must be {@code static} by default.
* Consequently, {@code @AfterAll} methods are not
* supported in {@link Nested @Nested} test classes or as <em>interface default
* methods</em> unless the test class is annotated with
* {@link TestInstance @TestInstance(Lifecycle.PER_CLASS)}. {@code @AfterAll}
* methods may optionally declare parameters to be resolved by
* {@link org.junit.jupiter.api.extension.ParameterResolver ParameterResolvers}.
*
* <h3>Inheritance and Execution Order</h3>
*
* <p>{@code @AfterAll} methods are inherited from superclasses as long as
* they are not <em>hidden</em> or <em>overridden</em>. Furthermore,
* {@code @AfterAll} methods from superclasses will be executed after
* {@code @AfterAll} methods in subclasses.
*
* <p>Similarly, {@code @AfterAll} methods declared in an interface are
* inherited as long as they are not <em>hidden</em> or <em>overridden</em>,
* and {@code @AfterAll} methods from an interface will be executed after
* {@code @AfterAll} methods in the class that implements the interface.
*
* <p>JUnit Jupiter does not guarantee the execution order of multiple
* {@code @AfterAll} methods that are declared within a single test class or
* test interface. While it may at times appear that these methods are invoked
* in alphabetical order, they are in fact sorted using an algorithm that is
* deterministic but intentionally non-obvious.
*
* <p>In addition, {@code @AfterAll} methods are in no way linked to
* {@code @BeforeAll} methods. Consequently, there are no guarantees with regard
* to their <em>wrapping</em> behavior. For example, given two
* {@code @BeforeAll} methods {@code createA()} and {@code createB()} as well as
* two {@code @AfterAll} methods {@code destroyA()} and {@code destroyB()}, the
* order in which the {@code @BeforeAll} methods are executed (e.g.
* {@code createA()} before {@code createB()}) does not imply any order for the
* seemingly corresponding {@code @AfterAll} methods. In other words,
* {@code destroyA()} might be called before <em>or</em> after
* {@code destroyB()}. The JUnit Team therefore recommends that developers
* declare at most one {@code @BeforeAll} method and at most one
* {@code @AfterAll} method per test class or test interface unless there are no
* dependencies between the {@code @BeforeAll} methods or between the
* {@code @AfterAll} methods.
*
* <h3>Composition</h3>
*
* <p>{@code @AfterAll} may be used as a meta-annotation in order to create
* a custom <em>composed annotation</em> that inherits the semantics of
* {@code @AfterAll}.
*
* @since 5.0
* @see BeforeAll
* @see BeforeEach
* @see AfterEach
* @see Test
* @see TestFactory
* @see TestInstance
*/
@Target({ ElementType.ANNOTATION_TYPE, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Documented
@API(status = STABLE, since = "5.0")
public @interface AfterAll {
}