Module org.junit.platform.launcher
Package org.junit.platform.launcher
Enum EngineDiscoveryResult.Status
- java.lang.Object
-
- java.lang.Enum<EngineDiscoveryResult.Status>
-
- org.junit.platform.launcher.EngineDiscoveryResult.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<EngineDiscoveryResult.Status>
- Enclosing class:
- EngineDiscoveryResult
public static enum EngineDiscoveryResult.Status extends Enum<EngineDiscoveryResult.Status>
Status of test discovery by aTestEngine
.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAILED
Indicates that test discovery has failed.SUCCESSFUL
Indicates that test discovery was successful.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EngineDiscoveryResult.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static EngineDiscoveryResult.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESSFUL
public static final EngineDiscoveryResult.Status SUCCESSFUL
Indicates that test discovery was successful.
-
FAILED
public static final EngineDiscoveryResult.Status FAILED
Indicates that test discovery has failed.
-
-
Method Detail
-
values
public static EngineDiscoveryResult.Status[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EngineDiscoveryResult.Status c : EngineDiscoveryResult.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EngineDiscoveryResult.Status valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-