Enum
RunExitCode

The command line runner exit code.

  • '0' for processed run and tests success
  • '1' for processed run but some failed tests
  • more than 1 for other errors.

Definition

Namespace:ArtOfTest.WebAii.Design.Execution

Assembly:ArtOfTest.WebAii.Design.dll

Syntax:

cs-api-definition
public enum RunExitCode

Fields

NOT_RUN_COMPILATION_ERRORS

Run is not processed due to compilation errors.

Declaration

cs-api-definition
NOT_RUN_COMPILATION_ERRORS = 3

Field Value

RunExitCode

NOT_RUN_INVALID_COMMAND_ARGS

No run to process due to general invalid arguments error.

Declaration

cs-api-definition
NOT_RUN_INVALID_COMMAND_ARGS = 11

Field Value

RunExitCode

NOT_RUN_TESTLIST_NOT_FOUND

Run is not processed due to invalid test list path argument.

Declaration

cs-api-definition
NOT_RUN_TESTLIST_NOT_FOUND = 13

Field Value

RunExitCode

NOT_RUN_TEST_NOT_FOUND

Run is not processed due to invalid test path argument.

Declaration

cs-api-definition
NOT_RUN_TEST_NOT_FOUND = 12

Field Value

RunExitCode

NOT_RUN_UNEXPECTED_ERROR

Run is not processed due to unexpected error.

Declaration

cs-api-definition
NOT_RUN_UNEXPECTED_ERROR = 2

Field Value

RunExitCode

NOT_RUN_USAGE_INFO

No run to process, requested usage info.

Declaration

cs-api-definition
NOT_RUN_USAGE_INFO = 10

Field Value

RunExitCode

RUN_TESTS_ERROR

Run is processed and some tests failed.

Declaration

cs-api-definition
RUN_TESTS_ERROR = 1

Field Value

RunExitCode

RUN_TESTS_SUCCESS

Run is processed and all tests passed.

Declaration

cs-api-definition
RUN_TESTS_SUCCESS = 0

Field Value

RunExitCode