|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Verdicts>
fr.inria.peerunit.test.oracle.Verdicts
public enum Verdicts
| Enum Constant Summary | |
|---|---|
ERROR
The test has not been executed correctly : it's not possible to determine if the test is PASS, FAIL or INCONCLUSIVE. |
|
FAIL
The test failed. |
|
INCONCLUSIVE
The test didn't failed but we can't be sure it works. |
|
PASS
The test has been correctly executed. |
|
| Method Summary | |
|---|---|
static Verdicts |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Verdicts[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Verdicts PASS
public static final Verdicts FAIL
public static final Verdicts INCONCLUSIVE
public static final Verdicts ERROR
PASS, FAIL or INCONCLUSIVE.
| Method Detail |
|---|
public static Verdicts[] values()
for (Verdicts c : Verdicts.values()) System.out.println(c);
public static Verdicts 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 name
java.lang.NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||