xcode_test_project
Execute tests for an Xcode project by specifying the project path, test scheme, and destination. Ideal for automating iOS/macOS project testing within the Xcode MCP Server environment.
Instructions
Run tests for an Xcode project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination | No | Test destination | |
project_path | Yes | Path to .xcodeproj file | |
scheme | Yes | Test scheme name |
Input Schema (JSON Schema)
{
"properties": {
"destination": {
"description": "Test destination",
"type": "string"
},
"project_path": {
"description": "Path to .xcodeproj file",
"type": "string"
},
"scheme": {
"description": "Test scheme name",
"type": "string"
}
},
"required": [
"project_path",
"scheme"
],
"type": "object"
}