DataDrivenTestCaseProgress Property |
Gets or sets the progress of the current Data Driven test case.
Namespace:
Hummingbird.TestFramework.Automation
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [DataMemberAttribute]
public float Progress { get; set; }
<DataMemberAttribute>
Public Property Progress As Single
Get
Set
public:
[DataMemberAttribute]
property float Progress {
float get ();
void set (float value);
}
[<DataMemberAttribute>]
member Progress : float32 with get, set
Property Value
Type:
Single
The progress value between 0 and 100. 100 means the last test item in collection is finished;
Remarks
The Progress hides the normal Progress used in the ordinary Test Case object, because N Test cases will be generated and executed according to the test data.
To access the Progress for the current running Test Case instance, use
.
See Also