PhpStorm中的Phpunit错误

前端之家收集整理的这篇文章主要介绍了PhpStorm中的Phpunit错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在PHPStorm中运行测试,我得到这个错误.有没有人知道地球上可能造成的?

PHP Fatal error: Class ‘PHPUnit_TextUI_ResultPrinter’ not found in
C:\Users\administrator1\AppData\Local\Temp\ide-PHPunit.PHP on line 249

我在其他项目中运行测试 – 也使用ide-PHPunit.PHP,它们运行正常.

愚蠢的错误我只是忘了在项目中添加PHPunit作为依赖.对于任何其他人得到这个错误,composer.json添加
"require-dev": {
    "PHPunit/PHPunit": "3.7.*"
},

然后运行:

composer update

解决了这个问题.

原文链接:https://www.f2er.com/php/132607.html

猜你在找的PHP相关文章