testplan_create_test_case
Creates a test case work item in Azure DevOps by defining project, title, steps, priority, area path, and iteration path. Streamlines test case management via PAT authentication.
Instructions
Creates a new test case work item.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
areaPath | No | The area path for the test case. | |
iterationPath | No | The iteration path for the test case. | |
priority | No | The priority of the test case. | |
project | Yes | The unique identifier (ID or name) of the Azure DevOps project. | |
steps | No | The steps to reproduce the test case. Make sure to format each step as '1. Step one|Expected result one 2. Step two|Expected result two. USE '|' as the delimiter between step and expected result. DO NOT use '|' in the description of the step or expected result. | |
title | Yes | The title of the test case. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"areaPath": {
"description": "The area path for the test case.",
"type": "string"
},
"iterationPath": {
"description": "The iteration path for the test case.",
"type": "string"
},
"priority": {
"description": "The priority of the test case.",
"type": "number"
},
"project": {
"description": "The unique identifier (ID or name) of the Azure DevOps project.",
"type": "string"
},
"steps": {
"description": "The steps to reproduce the test case. Make sure to format each step as '1. Step one|Expected result one\n2. Step two|Expected result two. USE '|' as the delimiter between step and expected result. DO NOT use '|' in the description of the step or expected result.",
"type": "string"
},
"title": {
"description": "The title of the test case.",
"type": "string"
}
},
"required": [
"project",
"title"
],
"type": "object"
}