&tag(PHPUnit); *目次 [#raf85d87] #contents *関連ページ [#y301e833] *参考情報 [#y0750d60] -[[PHP開発者のためのテストのすゝめ(2):PHPUnitでユニットテスト (1/3) - @IT:http://www.atmarkit.co.jp/ait/articles/0911/12/news105.html]] *インストール [#h8cb67c2] pearでインストールする。 -チャンネル追加 $ sudo pear channel-discover pear.phpunit.de $ sudo pear channel-discover pear.symfony-project.com $ sudo pear channel-discover pear.symfony.com -インストール $ sudo pear install --alldeps phpunit/PHPUnit *入門 [#ce4493e0] -PHPUnit 4では冒頭のフレームワークの読み込みは必要ないっぽい。 #pre{{ <?php require_once 'Employee.php'; class EmployeeTest extends PHPUnit_Framework_TestCase { public function testSample() { $this->assertTrue(false); } } ?> }} -phpunitで直接実行 phpunit EmployeeTest.php