get method

Future<TestCase> get(
  1. String projectId,
  2. String historyId,
  3. String executionId,
  4. String stepId,
  5. String testCaseId, {
  6. String? $fields,
})

Gets details of a Test Case for a Step.

Experimental test cases API. Still in active development. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write to project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the containing Test Case does not exist

Request parameters:

projectId - A Project id. Required.

historyId - A History id. Required.

executionId - A Execution id Required.

stepId - A Step id. Note: This step must include a TestExecutionStep. Required.

testCaseId - A Test Case id. Required.

$fields - Selector specifying which fields to include in a partial response.

Completes with a TestCase.

Completes with a commons.ApiRequestError if the API endpoint returned an error.

If the used http.Client completes with an error when making a REST call, this method will complete with the same error.

Implementation

async.Future<TestCase> get(
  core.String projectId,
  core.String historyId,
  core.String executionId,
  core.String stepId,
  core.String testCaseId, {
  core.String? $fields,
}) async {
  final _queryParams = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'toolresults/v1beta3/projects/' +
      commons.escapeVariable('$projectId') +
      '/histories/' +
      commons.escapeVariable('$historyId') +
      '/executions/' +
      commons.escapeVariable('$executionId') +
      '/steps/' +
      commons.escapeVariable('$stepId') +
      '/testCases/' +
      commons.escapeVariable('$testCaseId');

  final _response = await _requester.request(
    _url,
    'GET',
    queryParams: _queryParams,
  );
  return TestCase.fromJson(_response as core.Map<core.String, core.dynamic>);
}