- All Implemented Interfaces:
Serializable
,Comparable<TestInstance.Lifecycle>
,java.lang.constant.Constable
- Enclosing class:
- TestInstance
Enumeration of test instance lifecycle modes.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionWhen using this mode, a new test instance will be created once per test class.When using this mode, a new test instance will be created for each test method, test factory method, or test template method. -
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Property name used to set the default test instance lifecycle mode: "junit.jupiter.testinstance.lifecycle.default" -
Method Summary
Modifier and TypeMethodDescriptionstatic TestInstance.Lifecycle
Returns the enum constant of this class with the specified name.static TestInstance.Lifecycle[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PER_CLASS
When using this mode, a new test instance will be created once per test class.- See Also:
-
PER_METHOD
When using this mode, a new test instance will be created for each test method, test factory method, or test template method.This mode is analogous to the behavior found in JUnit versions 1 through 4.
- See Also:
-
-
Field Details
-
DEFAULT_LIFECYCLE_PROPERTY_NAME
Property name used to set the default test instance lifecycle mode: "junit.jupiter.testinstance.lifecycle.default"Supported Values
Supported values include names of enum constants defined in
TestInstance.Lifecycle
, ignoring case.If not specified, the default is "per_method" which corresponds to
@TestInstance(Lifecycle.PER_METHOD)
.- Since:
- 5.0
- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-