public enum MockScope extends Enum<MockScope>
| Enum Constant and Description |
|---|
ASSOCIATED
Mock method only available for test cases in the test class it belongs to
|
GLOBAL
Mock method available for any test cases
|
| Modifier and Type | Method and Description |
|---|---|
static MockScope |
of(String scope) |
static MockScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MockScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MockScope ASSOCIATED
public static final MockScope GLOBAL
public static MockScope[] values()
for (MockScope c : MockScope.values()) System.out.println(c);
public static MockScope 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 © 2021. All rights reserved.