运行 PHPUnit 时出现问题

运行 PHPUnit 时出现问题

我的机器上的 PHPUnit 似乎无法正常运行。

我已经在我的计算机上安装并正确运行了 Pear,然后严格按照这个指南进行操作:

http://www.giocc.com/installing-phpunit-on-ubuntu-11-04-natty-narwhal.html

但是当我phpunit在 Ubuntu 的终端中输入时,我收到以下响应:

PHP Warning:  require_once(File/Iterator/Autoload.php): failed to open stream: No such file or directory in /home/thalley887/pear/share/pear/PHPUnit/Autoload.php on line 45
PHP Stack trace:
PHP   1. {main}() /home/thalley887/pear/bin/phpunit:0
PHP   2. require() /home/thalley887/pear/bin/phpunit:43
PHP Fatal error:  require_once(): Failed opening required 'File/Iterator/Autoload.php' (include_path='.:/usr/share/php') in /home/thalley887/pear/share/pear/PHPUnit/Autoload.php on line 45
PHP Stack trace:
PHP   1. {main}() /home/thalley887/pear/bin/phpunit:0
PHP   2. require() /home/thalley887/pear/bin/phpunit:43

我已经检查了我的 php.ini 文件并有以下行:

include_path = ".:/usr/share/php"

我正在使用 Ubuntu 12.04。如果我可以提供更多详细信息,请发表评论。如果我无法解决这个问题,我就要跳窗了!!

答案1

发射 sudo find /usr/share/ -name Iterator -type d | grep File/Iterator

如果没有结果,则缺少软件包,请使用以下命令重新安装

pear install phpunit/File_Iterator

如果仍然不起作用,请尝试重新安装 phpunit

pear install --force --alldeps phpunit/phpunit

相关内容