get_latest_test_results
Retrieve test results from the most recent Xcode test run, including summary and failed test details.
Instructions
Get the test results from the most recent test run.
Args: project_path: Path to Xcode project/workspace directory
Returns: JSON with test results or plain text error message. Success format: { "xcresult_path": "...", "summary": {"total_tests": N, "passed": M, "failed": K, "skipped": L}, "failed_tests": [{"test_name": "...", "failure_message": "...", ...}] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |