以下は簡単なPHPUnitのテスト例です。
<?php use PHPUnit\Framework\TestCase; class MathTest extends TestCase { public function testAddition() { $this->assertEquals(4, 2 + 2); } } ?>
phpunit MathTest.php