# Test Driven Development

> 用户或项目明确要求测试先行时，执行红绿重构。

- Skill: `bronc-x/test-driven-development` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add bronc-x/test-driven-development`
- Raw SKILL.md: https://api.skillmd.com/api/skills/bronc-x/test-driven-development/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: bronc-x (https://skillmd.com/u/bronc-x)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/bronc-x/test-driven-development

---


# Test-driven development

Use this skill only when test-first work is requested or mandated by the project. Do not force it onto documentation, configuration-only changes, exploratory spikes, or work whose observable behavior cannot yet be specified.

For choosing test level, seams, and boundaries, read [references/test-design.md](references/test-design.md). Ordinary red-green-refactor work can proceed from the contract below.

## Contract

1. Define one observable behavior and the smallest test that proves it.
2. Run the test and confirm it fails for the expected reason. A syntax, fixture, or environment failure is not a valid red state.
3. Implement the smallest production change that makes the behavior pass.
4. Run the focused test, then relevant neighboring checks.
5. Refactor only while tests remain green.

Do not weaken assertions, encode the implementation instead of behavior, edit unrelated tests, or treat flaky infrastructure as a product failure. If the current design has no testable seam, create the smallest useful seam without broad restructuring.

Completion means the new test failed for the intended reason, the implementation passed it, relevant regression checks pass, and failures caused by the change were fixed and rechecked.

