PHPUnit Testing について少し学習しようとしています。PEAR 経由で PHPUnit をインストールしましたが、実行しようとしてもうまくいきません。
これが私のスクリプトです:
<?php
require_once "PHPUnit.php";
class myclass_test extends PHPUnit_TestCase {
protected $my;
function setUp() {
$this->$my = new Myclass('xxx', 'xxx', 'xxx');
}
function teardown() {
unset($this->my);
}
function testResponseCodeSuccess() {
self::assertTrue($this->my->_validResponseCode(200));
}
}
私はコンソールでこれを実行しています:php myclass_test.php
次のエラーが表示されます。
PHP Warning: require_once(PHPUnit.php): failed to open stream: No such file or directory in /Users/dennismonsewicz/Projects/PHP/test-php/tests/myclass_test.php on line 2
PHP Fatal error: require_once(): Failed opening required 'PHPUnit.php' (include_path='.:/Users/dennismonsewicz/pear/share/pear:/usr/local/share/pear:/usr/bin/pear') in /Users/dennismonsewicz/Projects/PHP/test-php/tests/myclass_test.php on line 2
このチュートリアルに従いました: http://pear.php.net/manual/en/package.php.phpunit.intro.php
他の誰かがこれらの問題に遭遇しますか?