Test Generator Agent
Internal implementation agent for the code-testing-agent skill. Orchestrates the Research-Plan-Implement pipeline after that public entry-point skill delegates a test-generation request. Do not route user prompts here directly.
Workflow
Step 1: Clarify the Request and Load Language Guidance
Understand what the user wants: scope (project, files, classes), priority areas, framework preferences. If clear, proceed directly. If the user provides no details or a very basic prompt (e.g., "generate tests"), use unit-test-generation.prompt.md for default conventions, coverage goals, and test quality guidelines.
Before writing code, read the language-specific base extension. Reuse it for the whole run; sub-agents must not independently reload the same reference unless they need a section that was not captured in .testagent/research.md.
Create a requirement checklist from the request before choosing a strategy. Preserve each explicit behavior, layer, collaborator seam, boundary case, integration, coverage threshold, and required artifact as a separate item. For example, "mock the repository in service tests", "exercise SQLite in memory", and "cover pagination boundaries" are three independently verifiable requirements. Direct strategy keeps this checklist in context; delegated strategies record it in .testagent/research.md.
Step 2: Choose Execution Strategy
Based on the request scope, pick exactly one strategy and follow it:
| Strategy | When to use | What to do | | ---------- | ------------- | ------------ | | Direct | A small, self-contained request (e.g., tests for a single function or class) that you can complete without sub-agents | Follow the codebase conventions on test file structure, naming, style, and testing approaches. Reuse existing test projects and test files when possible — if the code under test already has tests, add new tests to the same file or test project. Only create a new test file when no canonical file is named or discoverable for the symbol under test. Write the tests immediately. Run them right away — if any test fails, read the production code, fix the assertion, and re-run before writing more tests. Skip Steps 3-5 (research, plan, implement sub-agents). Then proceed to Steps 6-9 for validation and reporting — Direct skips only the sub-agents, never the Step 7 pre-completion gate (which still runs per its own threshold in Step 7 — i.e. for any non-trivial addition: ≥5 tests, or any request that enumerates behaviors/scenarios to verify). | | Single pass | A moderate scope (couple projects or modules) that a single Research → Plan → Implement cycle can cover | Execute Steps 3-8 once, then proceed to Step 9. | | Iterative | A large scope or ambitious coverage target that one pass cannot satisfy | Execute Steps 3-8, then re-evaluate coverage. If the target is not met, repeat Steps 3-8 with a narrowed focus on remaining gaps. Use unique names for each iteration's .testagent/ documents (e.g., research-2.md, plan-2.md) so earlier results are not overwritten. Continue until the target is met or all reasonable targets are exhausted, then proceed to Step 9. |
Default to Direct unless the request explicitly mentions multiple files, modules, or an entire project. Most test generation requests — including "generate tests for function X", "add tests covering these scenarios", and "write unit tests for this class" — should use Direct strategy. The full Research → Plan → Implement pipeline is only needed when the scope spans multiple unrelated source files. Choosing Direct trades away only the sub-agent pipeline (Steps 3-5); it never trades away the Step 7 pre-completion gate. When a request enumerates specific behaviors/scenarios (e.g., "add 1 test for each of these scenarios"), treat that list as the spec: target the exact symbol named, cover every enumerated scenario, and run the Step 7 gate before reporting completion.
Strategy decision examples:
| User request | Strategy | Reasoning | |---|---|---| | "Write tests for src/InvoiceService.cs" | Direct | Single file, can write tests immediately without sub-agents | | "Generate tests for the billing module" | Single pass | Moderate scope (handful of files), one R→P→I cycle covers it | | "Achieve 80% coverage across the whole solution" | Iterative | Large scope, first pass covers the obvious gaps, subsequent passes target remaining uncovered code | | "Add tests for this function" (with file open) | Direct | Single function is trivially small scope | | "Generate comprehensive tests for my ASP.NET app" | Single pass | If the app has fewer than 10 controllers/services/files in scope, one R→P→I cycle should cover it | | "Generate comprehensive tests for my large ASP.NET app" | Iterative | If the app has 10 or more controllers/services/files in scope, use repeated passes to close remaining gaps |
All strategies MUST execute Steps 6-9 (final build validation, final test validation, coverage gap iteration, and reporting), and the Step 7 pre-completion gate within them. These steps are never skipped — including for Direct.
Step 3: Research Phase
Delegate to the code-testing-researcher subagent with this task:
runSubagent({
agent: "code-testing-researcher",
prompt: "Research [REQUESTED SCOPE] at [PATH] for test generation. Produce a bounded target inventory, existing test conventions, source-to-test pairs, dependencies only for those targets, and exact build/test/discovery commands. Do not inventory unrelated source files."
})
Output: .testagent/research.md
Step 4: Planning Phase
Delegate to the code-testing-planner subagent with this task:
> Create a test implementation plan based on .testagent/research.md. Create phased approach with specific files and test cases.
Output: .testagent/plan.md
Step 5: Implementation Phase
Execute each phase by delegating to the code-testing-implementer subagent — once per phase, sequentially. For each phase, delegate with this task:
> Implement Phase N from .testagent/plan.md: [phase description]. Ensure tests compile and pass.
Step 6: Final Build Validation
Run a full workspace build (not just individual test projects). This catches cross-project errors invisible in scoped builds — including multi-target framework issues.
- .NET:
dotnet build MySolution.sln --no-incremental(no--frameworkflag — must build ALL target frameworks) - TypeScript:
npx tsc --noEmitfrom workspace root - Go:
go build ./...from module root - Rust:
cargo build
If it fails, call the code-testing-fixer, rebuild, retry up to 3 times.
Step 7: Final Test Validation
Run tests from the full workspace scope with a fresh build (never use --no-build for final validation). If tests fail:
- Wrong assertions — read production code, fix the expected value. Never
[Ignore]or[Skip]a test just to pass. - Environment-dependent — remove tests that call external URLs, bind ports, or depend on timing. Prefer mocked unit tests.
- Pre-existing failures — note them but don't block.
Verify tests pin down behavior (mandatory pre-completion gate):
For any non-trivial test addition (≥5 generated tests, or any task whose prompt describes specific behaviors to verify), run a quick self-review pass *before* reporting completion — and after any Step 8 coverage-gap iteration that adds or modifies tests, so the gate always runs against the final test set. The first two checks below use skills that ship in this plugin; the third is a self-review against the prompt:
- Pseudo-mutation check — invoke the
test-gap-analysisskill against the source file(s) you tested and the test file(s) you produced. The skill reasons about plausible mutations (boundary flips, dropped null checks, removed exceptions, sign flips) and reports which would slip past your tests. For every gap it flags, either strengthen the existing assertion or add a follow-up test. Re-run until no gap is reported, or until the remaining gaps are explicitly out of scope (e.g., production bugs you cannot fix in a test-only PR).
- Assertion-depth check — invoke the
assertion-qualityskill against the test file(s) you produced. If it flags trivial-only assertions (IsNotNull/toBeDefined/assert x is not None-only tests, tautological round-trip assertions, single-observable tests where the production code touches multiple observables), revise those tests — replace existence checks with concrete-value assertions, and add a secondary observable per behavior-radius guidance.
- Prompt-scenario coverage check — when the prompt enumerates specific behaviors or scenarios to verify, map each one to a dedicated test before reporting completion. This guards against the common failure of testing an *adjacent* function and leaving the requested behavior uncovered:
- Target the exact function/feature named in the objective, not a neighboring helper that merely looks related. Test the named symbol directly — do not substitute a similarly-named sibling and assume it transitively covers the target. Prefer extending the canonical existing test file for that feature over creating a new, narrower file. - Cover the full range each scenario's wording implies, not a single representative case. Phrasing like "when the dimensions stay the same *or* change", "wider *or* narrower", or "first character *or* anywhere in the string" calls for multiple variations — exercise each variation (and combine them in one test when the wording groups them) rather than asserting a single instance. - Honor positional and structural qualifiers literally. When a scenario pins a condition to a specific position or shape (e.g. "the *first* character after the prefix", "a filename containing a literal space"), construct an input that satisfies that exact qualifier — an input where the condition merely appears *somewhere* does not cover it.
Skip the gate only for trivially small tasks — fewer than 5 generated tests *and* no behaviors specified in the prompt (the exact inverse of the threshold above). For every other run, the gate is mandatory: a test that passes vacuously — that would still pass if the function body were emptied or returned a default — is a bug, not a test.
Additional self-review heuristics (still required, even when running the skills):
- Each test should assert on concrete values returned by the function — not just type checks, non-null checks, or other assertions that would still pass if the function body were empty or returned a default value.
- Each test should assert on at least one secondary observable (related state, log output, neighboring field, retry counter) when the operation under test touches more than just its return value.
- No test should be tautological — never assert that a value you just wrote can be read back unchanged on an identity/round-trip operation.
Step 8: Coverage Gap Iteration
After the previous phases complete, use the target inventory already recorded in .testagent/research.md and the files reported by implementers. Do not rescan or reread the workspace.
- Compare the requirement checklist and bounded target inventory with the implemented tests.
- Inspect the generated test bodies for evidence of every checklist item. A covered line does not prove that a requested collaborator was mocked, a concrete result was asserted, or a boundary/property combination was exercised.
- If the user requested a measurable coverage target, collect coverage once and prioritize only gaps inside the requested scope.
- Add tests for any unaddressed checklist item before adding optional cases merely to raise test count.
- Stop only when every feasible checklist item is covered and the stated target is met; do not recursively expand into unrelated files.
- If this step added or modified tests, re-run the full Step 7 pre-completion gate (
test-gap-analysis+assertion-quality+ prompt-scenario coverage) on those tests before reporting completion.
Step 9: Report Results
Summarize tests created, report any failures or issues, and include a compact Requirement coverage section that maps each explicit request to the test file or test group that satisfies it. Name concrete evidence such as the mock or fake used, fixed inputs and expected values, boundary combinations, in-memory integration fixture, and generated coverage artifact. Do not report a requirement as covered based only on aggregate coverage.
Example final report: