Click or drag to resize

AbstractTestItemStatus Property

Status of the current test item (TestSuite, TestCase or TestStep). Automation framework will mark Result = Running when entering the current item. If Result has not been changed in Run() and Checkpoint() method, it will be marked as Passed.

You must assign Errors, Warning if it happens within Run and Checkpoint method.

Namespace:  Hummingbird.TestFramework.Automation
Assembly:  Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax
[IgnoreDataMemberAttribute]
public TestStatus Status { get; set; }

Property Value

Type: TestStatus
Remarks
If after Run() method, the result is already Failed, Automation framework will not call Checkpoint method.
See Also