如何在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

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...