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
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 Shared Sub ExecuteTest (
uiTest As UITest,
startId As Long,
stopId As Long
)
Parameters
uiTest
Type: Microsoft.VisualStudio.TestTools.UITest.Common.UITestThe UITest to execute.
startId
Type: System.Int64The ID of the first action in ExecuteAction list that indicates the start of the range.
stopId
Type: System.Int64The 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.
See Also
ExecuteTest Overload
UITestInterpreterCore Class
Microsoft.VisualStudio.TestTools.UITest.CodeGeneration Namespace
Return to top