create-integration-test
Installation
SKILL.md
Integration Test Generator
Generates PHPUnit 11+ integration tests for PHP 8.4 infrastructure components.
Characteristics
- Real dependencies — uses actual implementations
- Database transactions — rollback after each test
- Isolated — no cross-test contamination
- Slower than unit — acceptable for infrastructure testing
Template
<?php
declare(strict_types=1);
namespace Tests\Integration\{Namespace};