analyze_test_coverage
Analyzes source and test code to find untested functions, then prioritizes which need tests based on complexity, export status, and parameter count.
Instructions
Parse source code and test code to identify untested functions. Suggests which functions need tests most based on complexity, export status, and parameter count.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| test_code | Yes | The test code to check which functions are already tested | |
| source_code | Yes | The source code to analyze for functions | |
| source_file_name | No | Filename for the source (used in output, default: "source.ts") |