Enum TestOutcome
Represents the outcome of a test execution.
public enum TestOutcome
Fields
Failed = 1The test failed due to an assertion failure or unexpected exception.
Inconclusive = 3The test completed but the result was inconclusive.
NotExecuted = 4The test was not executed.
Passed = 0The test passed successfully.
Skipped = 2The test was skipped and not executed.