Share via


UITestInterpreterCore.ExecuteTest Method (UITest, Int64, Int64)

Executes (that is, interprets) the given UITest object for the actions in the specified range.

Namespace:  Microsoft.VisualStudio.TestTools.UITest.CodeGeneration
Assembly:  Microsoft.VisualStudio.TestTools.UITest.Common (in Microsoft.VisualStudio.TestTools.UITest.Common.dll)

Syntax

'Declaration
Public Shared Sub ExecuteTest ( _
    uiTest As UITest, _
    startId As Long, _
    stopId As Long _
)
public static void ExecuteTest(
    UITest uiTest,
    long startId,
    long stopId
)
public:
static void ExecuteTest(
    UITest^ uiTest, 
    long long startId, 
    long long stopId
)
static member ExecuteTest : 
        uiTest:UITest * 
        startId:int64 * 
        stopId:int64 -> unit
public static function ExecuteTest(
    uiTest : UITest, 
    startId : long, 
    stopId : long
)

Parameters

  • startId
    Type: Int64

    The ID of the first action in ExecuteAction list that indicates the start of the range.

  • stopId
    Type: Int64

    The ID of the last action in ExecuteAction list that indicates the end of the range.

Remarks

startId and stopId are used for only the ExecuteActions and not for other action lists.

.NET Framework Security

See Also

Reference

UITestInterpreterCore Class

ExecuteTest Overload

Microsoft.VisualStudio.TestTools.UITest.CodeGeneration Namespace