get_tests_for_file
Retrieve test files associated with a source file using static lookup across supported languages: Go, Python, TypeScript, JavaScript, and Rust.
Instructions
Given a source file path, return the test files that exercise it. Static lookup — no test execution. Go: test.go in same directory. Python: test.py / *_test.py in same dir and tests/ sibling. TypeScript/JS: *.test.ts, *.spec.ts etc. Rust: returns source file itself (tests inline). Does not require start_lsp.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes |