我想让phpunit在我的ubuntu 11.10安装上运行。 我按照建议here使用PEAR安装了PHPUnit,然后我准备了一个非常小的测试类:
error_reporting(E_ALL & ~E_DEPRECATED);
set_include_path(get_include_path().':/usr/share/php');
require_once 'PHPUnit/Autoload.php';
require_once 'PHPUnit/Extensions/OutputTestCase.php';
class ExampleTest extends PHPUnit_Framework_TestCase
{
public function testOne()
{
$this->assertTrue(FALSE);
}
}
// $suite = new PHPUnit_Framework_TestSuite('ExampleTest');
// PHPUnit_TextUI_TestRunner::run($suite);
当我通过命令行可执行phpunit运行时,我什么都没得到。 当我取消注释最后两行并使用php可执行文件运行文件时,我得到了正确的输出(失败断言是真的等等。)
此外,当我尝试 phpunit --version 时,我仍然一无所获!
任何想法??
答案 0 :(得分:2)
我只是想通了......我忘了在php.ini的include_path中添加/ usr / share / php。 grrrrrr ...