public static enum JkTestProcessor.JkProgressStyle extends java.lang.Enum<JkTestProcessor.JkProgressStyle> implements java.io.Serializable
Enum Constant and Description |
---|
BAR
Shows a progress bar with the current test name.
|
FULL
Maven-like style progress.
|
MUTE
No output during test execution.
|
PLAIN
Maven-like progress, but skips test outputs.
|
STEP
Prints a '.' for each test executed.
|
Modifier and Type | Method and Description |
---|---|
static JkTestProcessor.JkProgressStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JkTestProcessor.JkProgressStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JkTestProcessor.JkProgressStyle FULL
public static final JkTestProcessor.JkProgressStyle PLAIN
public static final JkTestProcessor.JkProgressStyle STEP
public static final JkTestProcessor.JkProgressStyle MUTE
public static final JkTestProcessor.JkProgressStyle BAR
public static JkTestProcessor.JkProgressStyle[] values()
for (JkTestProcessor.JkProgressStyle c : JkTestProcessor.JkProgressStyle.values()) System.out.println(c);
public static JkTestProcessor.JkProgressStyle 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