get_untested_symbols
Identify all code symbols without test coverage, classifying them as unreached or imported but not called, to analyze coverage gaps in your codebase.
Instructions
Find ALL symbols (not just exports) lacking test coverage. Classifies as "unreached" (no test file imports the source) or "imported_not_called" (test imports file but never references this symbol). Use for thorough coverage gap analysis.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_pattern | No | Filter by file glob pattern (e.g. "src/tools/%") | |
| max_results | No | Cap on returned items (default: all) |