TestOutcome Enumeration
Represents the outcome of a completed test.
Namespace: Microsoft.TeamFoundation.TestManagement.Client
Assembly: Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)
Syntax
'Declaration
<GenerateAllConstantsAttribute(Nothing)> _
Public Enumeration TestOutcome
[GenerateAllConstantsAttribute(null)]
public enum TestOutcome
[GenerateAllConstantsAttribute(nullptr)]
public enum class TestOutcome
[<GenerateAllConstantsAttribute(null)>]
type TestOutcome
public enum TestOutcome
Members
Member name | Description | |
---|---|---|
Aborted | The test was aborted. This was caused not by a user action but by the framework. | |
Blocked | The test was not executed because the ITestElement.IsRunnable property was set to false. | |
Error | A system error occurred during the test execution. | |
Failed | The test was executed, but issues occurred that may involve exceptions or failed assertions. | |
Inconclusive | The test was completed, but may have been aborted, and had no indication of pass or fail. | |
MaxValue | Represents the maximum value in this enumeration, which is Error. | |
None | The test has not been completed, or the test type does not report pass or failure. | |
NotExecuted | The test was not executed because the user stopped the test. | |
Passed | The test was executed and had no issues. | |
Timeout | The test timed out. | |
Unspecified | Used only during an update to preserve the existing value. | |
Warning | The test generated a warning. This is not a failure. |