| name | test |
| description | Run tests and report results. Determines test scope based on context and analyzes failures in detail. |
Run tests following these steps:
Steps
-
Determine test scope:
- If specific test class mentioned: run that test
- If specific domain affected: run related tests
- Otherwise: run all tests
-
Run tests:
./gradlew test --tests "*{TestClassName}*"
./gradlew test
-
Analyze results:
- Show test summary
- If failures: show failure messages and suggest fixes
- If success: confirm all tests passed
-
Report:
- Total tests run
- Pass/Fail count
Do NOT claim success without running the tests first.