What problem does it solve? Writing a single test without a clear internal structure leads to bloated setups, multi-behavior assertions, and tests that cannot be mapped one-to-one to the behaviors they verify. This Skill defines the internal anatomy of one test so each test verifies exactly one behavior and stays traceable to a test ledger entry. ## Core Features & Use Cases - AAA Pattern (Arrange-Act-Assert): Splits a test body into preparation, execution, and verification stages separated by blank lines, with a one-line Act and single-concern Assert. - Given-When-Then (BDD): Expresses the same three-stage structure in business vocabulary so acceptance scenarios and Gherkin specs map one-to-one to tests. - Table-Driven / Parameterized Tests: Runs equivalence-class representatives and boundary values through one test definition via it.each with dynamic per-row labels. - Use Case: After the test-catalog router selects a technique for a behavior in your T-ID ledger, apply this Skill to write the actual vitest test body with step-by-step procedures and completion checklists. ## Quick Start Ask the AI to structure a vitest test for a specific behavior using the AAA pattern with a one-line Act and single assertion.