generate_test_template
Creates a test case template by analyzing existing test patterns and project conventions. Provide a test suite path and test case name to generate.
Instructions
Generate a test template based on existing patterns and project conventions.
Args:
test_suite_path: Path to a suite_* directory.
test_case_name: Name of the test case
test_description: Optional description of what the test should do
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| test_case_name | Yes | ||
| test_suite_path | Yes | ||
| test_description | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message | Yes | Summary of what was generated | |
| template | Yes | Generated Python test script content, ready to write to test.py | |
| object_pattern | Yes | Object reference pattern used in the template (e.g. 'suite_names', 'global_simple'), or null if unknown |