私はPHPUnitのウェブサイトの例である次のテストファイルを持っています。PHPUnitがPHPStormで動作しません
<?php
require_once 'PHPUnit/Autoload.php';
class StackTest extends PHPUnit_Framework_TestCase
{
public function testPushAndPop()
{
$stack = array();
$this->assertEquals(0, count($stack));
array_push($stack, 'foo');
$this->assertEquals('foo', $stack[count($stack)-1]);
$this->assertEquals(1, count($stack));
$this->assertEquals('foo', array_pop($stack));
$this->assertEquals(0, count($stack));
}
}
?>
私はPHPStorm 5.0でそれを実行しようとしていますが、私は次のエラーを取得:私はEへのインクルードパスを設定しているとき:それはCに起こっている理由
E:\wamp\bin\php\php5.3.13\php.exe C:\Users\<user>\AppData\Local\Temp\ide-phpunit.php --no-configuration StackTest E:\wamp\www\renting\tests\StackTest.php
Testing started at 03:37 ...
SCREAM: Error suppression ignored for
Warning: require_once(PHPUnit/Runner/Version.php): failed to open stream: No such file or directory in C:\Users\<user>\AppData\Local\Temp\ide-phpunit.php on line 166
任意のアイデア: ?
ちょうどここにこれを残したいと思った:[PEARのインストール方法のための生活の終了](https://github.com/sebastianbergmann/phpunit/wiki/End-of-Life-for-PEAR-Installation -方法) –