testplan_list_test_cases
Retrieve a list of test cases from a specific test plan and suite in Azure DevOps. Input project ID, plan ID, and suite ID to access relevant test cases for streamlined test management.
Instructions
Gets a list of test cases in the test plan.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
planid | Yes | The ID of the test plan. | |
project | Yes | The unique identifier (ID or name) of the Azure DevOps project. | |
suiteid | Yes | The ID of the test suite. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"planid": {
"description": "The ID of the test plan.",
"type": "number"
},
"project": {
"description": "The unique identifier (ID or name) of the Azure DevOps project.",
"type": "string"
},
"suiteid": {
"description": "The ID of the test suite.",
"type": "number"
}
},
"required": [
"project",
"planid",
"suiteid"
],
"type": "object"
}