# Testing Strategy

> Choose appropriate tests and reduce regressions.

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

---


# Testing Strategy

## Steps
1. Prefer the smallest test that validates behavior.
2. Use unit tests for pure logic, integration for boundaries.
3. Add regression tests for bug fixes.
4. If tests cannot run, state the reason.

