PHPUnit + Composer + MakeGood,PHPUnit_Framework_TestCase类不可用。固定

时间:2016-04-08 16:34:30

标签: eclipse phpunit makegood

我正在使用Eclipse for PHP Developers,Eclipse Neon Milestone(4.6)。

我已经成功地使用Composer安装了PhpUnit,它在命令行中运行良好。

我还安装了MakeGood插件,但是有一个错误:

enter image description here

已经尝试了This answer中的所有建议。

我错过了什么吗?请帮忙。

1 个答案:

答案 0 :(得分:0)

我意识到这是一个老问题,但它值得回答。

如果您已根据链接的答案设置了环境,请将此行添加到测试用例的顶部:

require_once 'vendor/autoload.php';

这将引入PHPUnit类定义。 这也将启用测试方法的自动完成(例如assertFalse)。