Edit

TestHttpClientBase.GetTestIterationAsync Method

Definition

Overloads

GetTestIterationAsync(Guid, Int32, Int32, Int32, Nullable<Boolean>, Object, CancellationToken)

[Preview API] Get iteration for a result

public virtual System.Threading.Tasks.Task<Microsoft.TeamFoundation.TestManagement.WebApi.TestIterationDetailsModel> GetTestIterationAsync(Guid project, int runId, int testCaseResultId, int iterationId, Nullable<bool> includeActionResults = null, object userState = null, System.Threading.CancellationToken cancellationToken = null);
abstract member GetTestIterationAsync : Guid * int * int * int * Nullable<bool> * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.TeamFoundation.TestManagement.WebApi.TestIterationDetailsModel>
override this.GetTestIterationAsync : Guid * int * int * int * Nullable<bool> * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.TeamFoundation.TestManagement.WebApi.TestIterationDetailsModel>

Parameters

project
Guid

Project ID

runId
Int32

ID of the test run that contains the result.

testCaseResultId
Int32

ID of the test result that contains the iterations.

iterationId
Int32

Id of the test results Iteration.

includeActionResults
Nullable<Boolean>

Include result details for each action performed in the test iteration. ActionResults refer to outcome (pass/fail) of test steps that are executed as part of a running a manual test. Including the ActionResults flag gets the outcome of test steps in the actionResults section and test parameters in the parameters section for each test iteration.

userState
Object
cancellationToken
CancellationToken

The cancellation token to cancel operation.

Returns

Applies to

GetTestIterationAsync(String, Int32, Int32, Int32, Nullable<Boolean>, Object, CancellationToken)

[Preview API] Get iteration for a result

public virtual System.Threading.Tasks.Task<Microsoft.TeamFoundation.TestManagement.WebApi.TestIterationDetailsModel> GetTestIterationAsync(string project, int runId, int testCaseResultId, int iterationId, Nullable<bool> includeActionResults = null, object userState = null, System.Threading.CancellationToken cancellationToken = null);
abstract member GetTestIterationAsync : string * int * int * int * Nullable<bool> * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.TeamFoundation.TestManagement.WebApi.TestIterationDetailsModel>
override this.GetTestIterationAsync : string * int * int * int * Nullable<bool> * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.TeamFoundation.TestManagement.WebApi.TestIterationDetailsModel>

Parameters

project
String

Project ID or project name

runId
Int32

ID of the test run that contains the result.

testCaseResultId
Int32

ID of the test result that contains the iterations.

iterationId
Int32

Id of the test results Iteration.

includeActionResults
Nullable<Boolean>

Include result details for each action performed in the test iteration. ActionResults refer to outcome (pass/fail) of test steps that are executed as part of a running a manual test. Including the ActionResults flag gets the outcome of test steps in the actionResults section and test parameters in the parameters section for each test iteration.

userState
Object
cancellationToken
CancellationToken

The cancellation token to cancel operation.

Returns

Applies to