编程语言
首页 > 编程语言> > 如何在laravel 5.5中运行phpunit

如何在laravel 5.5中运行phpunit

作者:互联网

我在laravel 5.5中运行phpunit时遇到问题.我已经去了vendor / bin然后在windows中使用我的命令提示符执行phpunit.但cmd只是给出了另一个选项或标志,如下图所示:
enter image description here

我已经阅读了用于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

如下所示 :
enter image description here

BUt它说“无法打开文件”.然后我试了
phpunit ExampleTest,但仍然无法打开文件.那么这里有什么不对……?
提前致谢

注意 :
这是我的phpunit.xml:
enter image description here

解决方法:

你需要运行phpunit而不进入bin文件夹.

试试这个:

vendor/bin/phpunit

这将加载您的phpunit.xml文件.否则无法加载配置文件.除非你没有给出特定的路径:

vendor/bin/phpunit --configuration /path/to/laravels/phpunit.xml

标签:laravel-5-5,php,windows
来源: https://codeday.me/bug/20190724/1522275.html