ExecutionTimeCondition.ExecutionTime Property

 

Gets or sets the number of seconds within which the test can execute before timeout. The default is 30 seconds.

Namespace:   Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions
Assembly:  Microsoft.Data.Tools.Schema.Sql.UnitTesting (in Microsoft.Data.Tools.Schema.Sql.UnitTesting.dll)

Syntax

public TimeSpan ExecutionTime { get; set; }
public:
property TimeSpan ExecutionTime {
    TimeSpan get();
    void set(TimeSpan value);
}
member ExecutionTime : TimeSpan with get, set
Public Property ExecutionTime As TimeSpan

Property Value

Type: System.TimeSpan

The number of seconds before timeout.

Remarks

Increase this number if you want to step through and debug a stored procedure.

See Also

ExecutionTimeCondition Class
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions Namespace

Return to top