create_suite
Generate a new test suite in QASE by specifying code, title, and optional details like description or preconditions through the MCP server integration.
Instructions
Create a new test suite
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | ||
description | No | ||
parent_id | No | ||
preconditions | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"code": {
"type": "string"
},
"description": {
"type": "string"
},
"parent_id": {
"type": "number"
},
"preconditions": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"code",
"title"
],
"type": "object"
}