We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zillow/auto-mobile'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
validation.md•684 B
# Project Validation
This document provides instructions for AI agents to validate the JUnitRunner project builds correctly
and all tests pass. After writing some implementation you should select the most relevant checks given the changes made.
```bash
# Compile main source code
./gradlew compileKotlin
# Compile test source code
./gradlew compileTestKotlin
# Build entire project (includes compilation)
./gradlew build
# Run all tests
./gradlew test
# Run specific test class
./gradlew test --tests "com.automobile.junit.AutoMobileJUnitRunnerTest"
# Run specific test method
./gradlew test --tests "com.automobile.junit.AutoMobileJUnitRunnerTest.testYamlPlanExecution"
```