我在laravel 5.5中运行phpunit时遇到问题。我已经去了vendor / bin然后在windows中使用我的命令提示符执行phpunit。但cmd只是给出了另一个选项或标志,如下图所示:
我已经阅读了用于unittest的laravel 5.5文档。它说我们只需要执行phpunit {如https://laravel.com/docs/5.5/testing}所示 然后我尝试了这个: How to run single test method with phpunit?
phpunit --filter testBasicTest tests\Unit\ExampleTest
坚持说它不能打开文件'。然后我试了 phpunit ExampleTest,但仍然无法打开文件。那么这里有什么不对......? 提前致谢
答案 0 :(得分:8)
你需要运行phpunit而不进入bin文件夹。
试试这个:
vendor/bin/phpunit
这将加载您的phpunit.xml
文件。否则无法加载配置文件。除非你没有给出特定的路径:
vendor/bin/phpunit --configuration /path/to/laravels/phpunit.xml
答案 1 :(得分:0)
只需通过composer安装 phpunit :
composer global require phpunit/phpunit
然后就可以测试laravel项目了。