UITestInterpreterCore.ExecuteTest Method (Int64, Int64)
Executes (that is, interprets) the current 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 Overridable Function ExecuteTest ( _
startId As Long, _
stopId As Long _
) As UITestPlaybackResult
public virtual UITestPlaybackResult ExecuteTest(
long startId,
long stopId
)
public:
virtual UITestPlaybackResult ExecuteTest(
long long startId,
long long stopId
)
abstract ExecuteTest :
startId:int64 *
stopId:int64 -> UITestPlaybackResult
override ExecuteTest :
startId:int64 *
stopId:int64 -> UITestPlaybackResult
public function ExecuteTest(
startId : long,
stopId : long
) : UITestPlaybackResult
Parameters
startId
Type: Int64The ID of the first action in ExecuteAction list that indicates the start of the range.
stopId
Type: Int64The ID of the last action in ExecuteAction list that indicates the end of the range.
Return Value
Type: Microsoft.VisualStudio.TestTools.UITest.CodeGeneration.UITestPlaybackResult
Returns UITestPlaybackResult.
Remarks
startId and stopId are used for only the ExecuteActions and not for other action lists.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualStudio.TestTools.UITest.CodeGeneration Namespace