find_tests_for_symbol
Find test methods covering a production symbol. Supports xUnit, NUnit, MSTest, and transitive search through helpers.
Instructions
List test methods that exercise the given production symbol. Recognises xUnit, NUnit, and MSTest. Set transitive=true to follow helper methods up to maxDepth levels (default 3, max 5).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | Symbol name as Type.Method (simple or fully qualified) | |
| maxDepth | No | Maximum walk depth when transitive=true. Clamped to [1, 5]. Default 3. | |
| transitive | No | Walk through helper methods to find indirect tests. Default false. |