CommandLineTestStepTimeout Property |
Gets or sets the Timeout where the test step will wait for command line execution.
The command line test step will wait until the program ends its execution, if timeout arrived and the program is still running, its process will be killed.
Namespace:
Hummingbird.TestFramework.Automation
Assembly:
Hummingbird.TestFramework.Automation (in Hummingbird.TestFramework.Automation.dll) Version: 1.2.0.0
Syntax [DataMemberAttribute]
public int Timeout { get; set; }
<DataMemberAttribute>
Public Property Timeout As Integer
Get
Set
public:
[DataMemberAttribute]
property int Timeout {
int get ();
void set (int value);
}
[<DataMemberAttribute>]
member Timeout : int with get, set
Property Value
Type:
Int32
An integer value indicate in Seconds the timeout
Remarks
Hummingbird Test Framework will try to close also the programs opened by the target executable from the process tree, but according to the complexity of the environment this behavior cannot be guaranteed. Make sure you are running an executable under control and for a good reason.
See Also