get_all_tcm_test_cases_with_root_suite_id
Retrieve all test cases from Zebrunner Test Case Management with root suite identification for comprehensive test organization and management.
Instructions
๐ณ Get ALL TCM test cases enriched with root suite ID information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | json |
project_key | Yes | Project key (e.g., 'android' or 'ANDROID') |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"description": "Output format",
"enum": [
"dto",
"json",
"string",
"markdown"
],
"type": "string"
},
"project_key": {
"description": "Project key (e.g., 'android' or 'ANDROID')",
"minLength": 1,
"type": "string"
}
},
"required": [
"project_key"
],
"type": "object"
}