testing-standards
Installation
SKILL.md
PHP Testing Standards
Language-level testing standards using PHPUnit, applicable to any PHP project.
PHPUnit Basics
Test Class Structure
<?php
declare(strict_types=1);
namespace App\Test\TestCase\Service;
use PHPUnit\Framework\TestCase;
use App\Service\UserService;