Represents the result of a test.
Namespace: SSIS.TestAssembly: SSIS.Test (in SSIS.Test.dll) Version: 3.0.0.236 (3.0.0.236)
Syntax
C# |
---|
public enum TestOutcome |
Visual Basic |
---|
Public Enumeration TestOutcome |
Visual C++ |
---|
public enum class TestOutcome |
Members
Member name | Value | Description | |
---|---|---|---|
Failed | 0 | Indicates that a test has successfully executed and that assertions have failed. | |
Inconclusive | 1 | Indicates that a test has successfully executed. Result is inconclusive. | |
Passed | 2 | Indicates that a test has successfully executed and that assertions have succeded. | |
InProgress | 3 | Indicates that a test is still in progress. | |
Error | 4 | Indicates that a test has not successfully executed. | |
Unknown | 5 | Indicates unknown state of a test. |