UnitTestOutcome Enum

Definition

unit test outcomes

public enum class UnitTestOutcome
public enum UnitTestOutcome
type UnitTestOutcome = 
Public Enum UnitTestOutcome
Inheritance
UnitTestOutcome

Fields

Aborted 6

Test was aborted by the user.

Error 4

There was a system error while we were trying to execute a test.

Failed 0

Test was executed, but there were issues. Issues may involve exceptions or failed assertions.

Inconclusive 1

Test has completed, but we can't say if it passed or failed. May be used for aborted tests.

InProgress 3

Test is currently executing.

NotRunnable 8

Test cannot be executed.

Passed 2

Test was executed without any issues.

Timeout 5

The test timed out.

Unknown 7

Test is in an unknown state

Applies to