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 intABORTstatic intABORT_ALLstatic intABORT_FEATUREstatic intABORT_ITERATIONstatic intABORT_SPECstatic intALLstatic intENDstatic intEND_ALLstatic intEND_FEATUREstatic intEND_ITERATIONstatic intEND_SPECstatic intFEATUREstatic intITERATIONstatic intOKstatic intSPEC
-
Constructor Summary
Constructors Constructor Description RunStatus()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static intaction(int status)static intcombine(int status1, int status2)Combines status1 and status2 by individually maximizing action and scope.static intscope(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
-
-