PHPetit is a tiny test framework for PHP.
Create a test class extending PHPetit\TestCase:
// tests/MyTest.php
use PHPetit\TestCase;
class MyTest extends TestCase
{
public function test_something(): void
{
$this->assertSame(1, 1);
}
}MIT