Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 PHP 开发人员使用 Eclipse,Eclipse Neon Milestone (4.6)。
我已经使用 Composer 成功安装了 PhpUnit,它在命令行中运行良好。
我也安装了 MakeGood 插件,但是有一个错误:
已经尝试过这个答案中的所有建议。
我错过了什么吗?请帮忙。
我意识到这是一个老问题,但值得回答。
如果您已根据链接的答案设置了环境,请将此行添加到测试用例的顶部:
require_once 'vendor/autoload.php';
这将引入 PHPUnit 类定义。这也将启用测试方法的自动完成(例如 assertFalse)。