テスト

編集

PHPUnitを使った単体テスト

編集

以下は簡単なPHPUnitのテスト例です。

<?php
use PHPUnit\Framework\TestCase;

class MathTest extends TestCase
{
    public function testAddition()
    {
        $this->assertEquals(4, 2 + 2);
    }
}
?>
テストの実行コマンド:
phpunit MathTest.php