在'<full path =“”to =“”class.php =“”>'phpunit testing中找不到类'<full path =“”to =“”class =“”>'

时间:2016-03-10 13:38:06

标签: php unit-testing testing phpunit

我正在尝试使用phpunit进行测试。

我有一个看起来像这样的文件(试用):

<?php
class NewController {
    protected $name;

    public function __construct($name)
    {
        $this->name = $name;
    }


}

当我运行phpunit(v.5.2)时 - 我看到以下错误:

Class 'C:\xampp\htdocs\test\NewController' could not be found in 'C:\xampp\htdocs\test\NewController.php'.

我确信这很简单,我很遗憾 - 但另一组眼睛可能有所帮助。

1 个答案:

答案 0 :(得分:0)

安装phpunit会出现问题。一旦卸载/重新安装,它就可以正常运行。