run_tests
Execute tests for the active Xcode project using a specified test plan. Integrates with the Xcode MCP Server to enable AI-assisted testing, progress monitoring, and real-time log access.
Instructions
Executes tests for the active Xcode project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
testPlan | No | Optional name of the test plan to run. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"testPlan": {
"description": "Optional name of the test plan to run.",
"type": "string"
}
},
"type": "object"
}