我安装了 PHPUnit
:
wget https://phar.phpunit.de/phpunit.phar
chmod +x phpunit.phar
mv phpunit.phar /usr/local/bin/phpunit
试图运行一个简单的测试,但得到:
Fatal error: require_once(): Failed opening required 'PHPUnit_Extensions_Story_TestCase.php'
如何安装
PHPUnit_Extensions_Story_TestCase
?测试很简单:
class TestFunctions extends PHPUnit_Framework_TestCase {
public function test_str() {
$this->assertEquals('foo', 'bar');
}
}
最佳答案
你需要安装 phpunit/PHPUnit_Story 包:
sudo pear channel-discover pear.phpunit.de
sudo pear install phpunit/PHPUnit_Story
或者从 github repository 手动。
关于PHPUnit:无法打开需要 `PHPUnit_Extensions_Story_TestCase.php`,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20769745/