Enum Constant and Description |
---|
NORMAL
Run the test(s).
|
ONLY
Run the test(s) and ignore all other tests not marked as ONLY.
|
SKIP
Do not run the test(s).
|
Modifier and Type | Method and Description |
---|---|
Behaviour |
combine(Behaviour behaviour)
Combine this behaviour with another behaviour.
|
static Behaviour |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Behaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Behaviour NORMAL
public static final Behaviour SKIP
public static final Behaviour ONLY
public static Behaviour[] values()
for (Behaviour c : Behaviour.values()) System.out.println(c);
public static Behaviour valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null