Package org.spockframework.runtime
Class RunStatus
- java.lang.Object
-
- org.spockframework.runtime.RunStatus
-
public class RunStatus extends java.lang.Object
- Author:
- Peter Niederwieser
-
-
Field Summary
Fields Modifier and Type Field Description static int
ABORT
static int
ABORT_ALL
static int
ABORT_FEATURE
static int
ABORT_ITERATION
static int
ABORT_SPEC
static int
ALL
static int
END
static int
END_ALL
static int
END_FEATURE
static int
END_ITERATION
static int
END_SPEC
static int
FEATURE
static int
ITERATION
static int
OK
static int
SPEC
-
Constructor Summary
Constructors Constructor Description RunStatus()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
action(int status)
static int
combine(int status1, int status2)
Combines status1 and status2 by individually maximizing action and scope.static int
scope(int status)
-
-
-
Field Detail
-
END
public static final int END
- See Also:
- Constant Field Values
-
ABORT
public static final int ABORT
- See Also:
- Constant Field Values
-
ITERATION
public static final int ITERATION
- See Also:
- Constant Field Values
-
FEATURE
public static final int FEATURE
- See Also:
- Constant Field Values
-
SPEC
public static final int SPEC
- See Also:
- Constant Field Values
-
ALL
public static final int ALL
- See Also:
- Constant Field Values
-
OK
public static final int OK
- See Also:
- Constant Field Values
-
END_ITERATION
public static final int END_ITERATION
- See Also:
- Constant Field Values
-
END_FEATURE
public static final int END_FEATURE
- See Also:
- Constant Field Values
-
END_SPEC
public static final int END_SPEC
- See Also:
- Constant Field Values
-
END_ALL
public static final int END_ALL
- See Also:
- Constant Field Values
-
ABORT_ITERATION
public static final int ABORT_ITERATION
- See Also:
- Constant Field Values
-
ABORT_FEATURE
public static final int ABORT_FEATURE
- See Also:
- Constant Field Values
-
ABORT_SPEC
public static final int ABORT_SPEC
- See Also:
- Constant Field Values
-
ABORT_ALL
public static final int ABORT_ALL
- See Also:
- Constant Field Values
-
-