Represents the result of a test.

Namespace: SSIS.Test
Assembly: 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 nameValueDescription
Failed0 Indicates that a test has successfully executed and that assertions have failed.
Inconclusive1 Indicates that a test has successfully executed. Result is inconclusive.
Passed2 Indicates that a test has successfully executed and that assertions have succeded.
InProgress3 Indicates that a test is still in progress.
Error4 Indicates that a test has not successfully executed.
Unknown5 Indicates unknown state of a test.

See Also