# Test

> Core software testing methodologies and best practices

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

---


# Test Skill

This skill encompasses the general testing strategies, focusing on ensuring quality, reliability, and correctness of software.

## When to use this skill
- When defining a testing strategy for a project.
- When determining the right mix of unit, integration, and E2e tests.
- When setting up test automation and CI/CD pipelines for tests.
- When dealing with code coverage and quality metrics.

## Guidelines
- Follow the Testing Pyramid: Many unit tests, fewer integration tests, and even fewer E2E tests.
- Tests should be deterministic, fast, and isolated.
- Ensure clear assertions in every test (Arrange, Act, Assert).

