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; }
<IgnoreDataMemberAttribute>
Public Property Status As TestStatus
Get
Set
public:
[IgnoreDataMemberAttribute]
property TestStatus Status {
TestStatus get ();
void set (TestStatus value);
}
[<IgnoreDataMemberAttribute>]
member Status : TestStatus with get, set
Property Value
Type:
TestStatusRemarks If after Run() method, the result is already Failed, Automation framework will not call Checkpoint method.
See Also