gpt4 book ai didi

phpunit 不工作

转载 作者:太空宇宙 更新时间:2023-11-03 16:57:28 25 4
gpt4 key购买 nike

我正在尝试让 phpunit 在我的 ubuntu 11.10 安装上运行。我按照建议使用 PEAR 安装了 PHPUnit here然后我准备了一个非常小的测试类:

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 时,我仍然一无所获!

有什么想法吗??

最佳答案

我刚刚弄明白了...我忘记在 php.ini 的 include_path 中添加/usr/share/php。呜呜呜……

关于phpunit 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7832338/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com