testplan_add_test_cases_to_suite
Adds existing test cases to a specified test suite in an Azure DevOps project by providing project ID, test plan ID, suite ID, and test case IDs.
Instructions
Adds existing test cases to a test suite.
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. | |
testCaseIds | Yes | The ID(s) of the test case(s) to add. |
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"
},
"testCaseIds": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
],
"description": "The ID(s) of the test case(s) to add. "
}
},
"required": [
"project",
"planId",
"suiteId",
"testCaseIds"
],
"type": "object"
}