public enum LaunchMode extends Enum<LaunchMode>
Enum Constant and Description |
---|
ANY
This denotes that no particular launch mode is requested.
|
NONE
With this launch mode, no SeedStack environment is used for any test.
|
PER_TEST
With this launch mode, a different SeedStack environment is used for each test.
|
PER_TEST_CLASS
With this launch mode, a unique SeedStack environment is used for the whole test class.
|
Modifier and Type | Method and Description |
---|---|
static LaunchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LaunchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LaunchMode PER_TEST_CLASS
public static final LaunchMode PER_TEST
public static final LaunchMode NONE
public static final LaunchMode ANY
public static LaunchMode[] values()
for (LaunchMode c : LaunchMode.values()) System.out.println(c);
public static LaunchMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2013-2018–2019 SeedStack. All rights reserved.