xcode_test
Execute tests for Xcode projects using specified .xcodeproj or .xcworkspace paths, with optional command-line arguments, through the XcodeMCP server for build automation and log parsing.
Instructions
Run tests for a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command_line_arguments | No | Additional command line arguments | |
xcodeproj | Yes | Path to the .xcodeproj file (or .xcworkspace if available) - supports both absolute (/path/to/project.xcodeproj) and relative (MyApp.xcodeproj) paths |
Input Schema (JSON Schema)
{
"properties": {
"command_line_arguments": {
"description": "Additional command line arguments",
"items": {
"type": "string"
},
"type": "array"
},
"xcodeproj": {
"description": "Path to the .xcodeproj file (or .xcworkspace if available) - supports both absolute (/path/to/project.xcodeproj) and relative (MyApp.xcodeproj) paths",
"type": "string"
}
},
"required": [
"xcodeproj"
],
"type": "object"
}