Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Get Test Cases/Scenarios and Stories linked with given test run

GET /testrun/{testRunIssueId}/issues

Description

Get Test Cases/Scenarios and Stories linked with given test run along with their summary and status.


Parameters

TypeNameDescriptionRequiredSchemaDefault

PathParameter

testRunIssueId

Issue id of test run

true

integer (int64)


QueryParameter

maxResults

Maximum number of issues to return in each call. Maximum possible value is 200. By default maximum 10 value values will be returned.

false

integer (int32)

10

QueryParameter

offset

Index of the first issue to return. Default is 0.

false

integer (int32)

0

QueryParameter

searchText

Possible values are test scenarios/stories based on filter

false

string




Responses

HTTP CodeDescriptionSchema

200

Successful operation.

No Content

400

Returned if the given test run issue id is invalid.

No Content

403

Returned if the currently athenticated user does not have permission view test run details.

No Content

404

Returned if the assignee or test run issue id is not provided.

No Content

500

Returned if exception occured while fetching issues.

No Content



Consumes

  • application/json


Produces

  • application/json


Tags

  • Test Run

...

Get Test Cases which are linked with Test Scenario

GET /testrun/{testRunIssueId}/testscenario/{testScenarioIssueId}/testcase

Description

Get Test Cases which are linked with Test Scenario.


Parameters

TypeNameDescriptionRequiredSchemaDefault

PathParameter

testRunIssueId

Issue id of test run

true

integer (int64)


PathParameter

testScenarioIssueId

Issue id of test scenario. It mandatory if Test case is linked to Test scenario on Test Run.

false

integer (int64)


QueryParameter

storyIssueId

Issue id of test story. It mandatory if Test case is linked to a Story, or Test scenario and then Test scenario to Story on Test Run.

false

integer (int64)


QueryParameter

maxResults

Maximum number of test cases to return in each call. Maximum possible value is 200. By default maximum 50 value values will be returned.

false

integer (int32)

50

QueryParameter

offset

Index of the first test case details needed to be fetched.

false

integer (int32)

0

QueryParameter

resultId

Id of execution result.

false

integer (int32)


QueryParameter

expand

Possible values are metadata, teststep and defect

false

string




Responses

HTTP CodeDescriptionSchema

200

Successful operation.

No Content

400

Returned if the given request data is invalid.

No Content

403

Returned if the currently authenticated user does not have permission to get data.

No Content

404

Returned if required request data is missing.

No Content

500

Returned if there is some problem in fetching data.

No Content



Consumes

  • application/json


Produces

  • application/json


Tags

  • Test Run

...