PHP: PhpStorm单元测试报错:PHPUnit Cannot open file
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP: PhpStorm单元测试报错:PHPUnit Cannot open file相关的知识,希望对你有一定的参考价值。
问题描述
版本: phpStorm 2019.3.4
PhpStorm单元测试报错
PHPUnit Cannot open file
问题分析
PhpStorm 2019.3.3 不支持 PHPUnit9、需要使用 PHPUnit 8.*
问题解决
composer.json
"require-dev":
phpunit/phpunit": "^9.5.0
替换为
"require-dev":
phpunit/phpunit": "^8.5.0
参考
以上是关于PHP: PhpStorm单元测试报错:PHPUnit Cannot open file的主要内容,如果未能解决你的问题,请参考以下文章
PHPstorm配置PHPunit对composer引入的php代码进行单元测试
PHP - PhpStorm 快捷键大全 PhpStorm 常用快捷键和配置(转)