public enum MicronautTestRuntime extends java.lang.Enum<MicronautTestRuntime>
| Enum Constant and Description |
|---|
JUNIT_5
JUnit 5.
|
KOTEST_4
Kotest 4.
|
NONE
No test runtime.
|
SPOCK_2
Spock 2.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.Map<java.lang.String,java.util.List<java.lang.String>> |
getDependencies() |
static MicronautTestRuntime |
parse(java.lang.String str) |
static MicronautTestRuntime |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MicronautTestRuntime[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MicronautTestRuntime JUNIT_5
public static final MicronautTestRuntime SPOCK_2
public static final MicronautTestRuntime KOTEST_4
public static final MicronautTestRuntime NONE
public static MicronautTestRuntime[] values()
for (MicronautTestRuntime c : MicronautTestRuntime.values()) System.out.println(c);
public static MicronautTestRuntime 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 nullpublic java.util.Map<java.lang.String,java.util.List<java.lang.String>> getDependencies()
public static MicronautTestRuntime parse(java.lang.String str)