public static enum JkUnit.JunitReportDetail extends java.lang.Enum<JkUnit.JunitReportDetail>
Enum Constant and Description |
---|
BASIC
Only detail abut the failed test and overall statistics
|
FULL
Complete report as the ones generated by surefire.
|
NONE
No report at all
|
Modifier and Type | Method and Description |
---|---|
static JkUnit.JunitReportDetail |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JkUnit.JunitReportDetail[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JkUnit.JunitReportDetail NONE
public static final JkUnit.JunitReportDetail BASIC
public static final JkUnit.JunitReportDetail FULL
public static JkUnit.JunitReportDetail[] values()
for (JkUnit.JunitReportDetail c : JkUnit.JunitReportDetail.values()) System.out.println(c);
public static JkUnit.JunitReportDetail 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