testplan_create_test_plan
Create a new test plan in Azure DevOps by specifying the project, name, iteration, and optional details like description, dates, and area path.
Instructions
Creates a new test plan in the project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
areaPath | No | The area path for the test plan | |
description | No | The description of the test plan | |
endDate | No | The end date of the test plan | |
iteration | Yes | The iteration path for the test plan | |
name | Yes | The name of the test plan to be created. | |
project | Yes | The unique identifier (ID or name) of the Azure DevOps project where the test plan will be created. | |
startDate | No | The start date of the test plan |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"areaPath": {
"description": "The area path for the test plan",
"type": "string"
},
"description": {
"description": "The description of the test plan",
"type": "string"
},
"endDate": {
"description": "The end date of the test plan",
"type": "string"
},
"iteration": {
"description": "The iteration path for the test plan",
"type": "string"
},
"name": {
"description": "The name of the test plan to be created.",
"type": "string"
},
"project": {
"description": "The unique identifier (ID or name) of the Azure DevOps project where the test plan will be created.",
"type": "string"
},
"startDate": {
"description": "The start date of the test plan",
"type": "string"
}
},
"required": [
"project",
"name",
"iteration"
],
"type": "object"
}