php-testing
Installation
SKILL.md
PHP Testing with PHPUnit
Before writing code
Fetch live docs: Web-search site:docs.phpunit.de phpunit 10 (or current version) for the latest PHPUnit documentation. Check https://phpunit.de/ for current version.
PHPUnit Fundamentals
Test Class Structure
- Test classes extend
PHPUnit\Framework\TestCase - Test methods prefixed with
testor annotated#[Test] setUp()— runs before each testtearDown()— runs after each testsetUpBeforeClass()/tearDownAfterClass()— per-class lifecycle