Enum Constant | Description |
---|---|
ASCII |
ASCII 7-bit characters form the tree branch.
|
UNICODE |
Unicode (extended ASCII) characters are used to display the test execution tree.
|
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
aborted() |
|
java.lang.String |
blank() |
|
java.lang.String |
end() |
|
java.lang.String |
entry() |
|
java.lang.String |
failed() |
|
java.lang.String |
root() |
|
java.lang.String |
skipped() |
|
java.lang.String |
status(TestExecutionResult result) |
|
java.lang.String |
successful() |
|
java.lang.String |
toString() |
Return lower case
Enum.name for easier usage in help text for
available options. |
static Theme |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Theme |
valueOf(java.nio.charset.Charset charset) |
Returns the enum constant of this type with the specified name.
|
static Theme[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
java.lang.String |
vertical() |
public static final Theme ASCII
Example test plan execution tree:
+-- engine alpha | '-- container BEGIN | +-- test 00 [OK] | '-- test 01 [OK] '-- engine omega +-- container END | +-- test 10 [OK] | '-- test 11 [A] aborted '-- container FINAL +-- skipped [S] because '-- failing [X] BäMM
public static final Theme UNICODE
Example test plan execution tree:
├─ engine alpha ✔ │ └─ container BEGIN ✔ │ ├─ test 00 ✔ │ └─ test 01 ✔ └─ engine omega ✔ ├─ container END ✔ │ ├─ test 10 ✔ │ └─ test 11 ■ aborted └─ container FINAL ✔ ├─ skipped ↷ because └─ failing ✘ BäMM
public static Theme[] values()
for (Theme c : Theme.values()) System.out.println(c);
public static Theme 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 static Theme valueOf(java.nio.charset.Charset charset)
charset
- 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 final java.lang.String root()
public final java.lang.String vertical()
public final java.lang.String blank()
public final java.lang.String entry()
public final java.lang.String end()
public final java.lang.String successful()
public final java.lang.String aborted()
public final java.lang.String failed()
public final java.lang.String skipped()
public final java.lang.String status(TestExecutionResult result)
public final java.lang.String toString()
Enum.name
for easier usage in help text for
available options.toString
in class java.lang.Enum<Theme>