如何在laravel 5.5中运行phpunit

时间:2017-10-30 07:04:23

标签: php windows laravel-5.5

我在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

坚持说它不能打开文件'。然后我试了 phpunit ExampleTest,但仍然无法打开文件。那么这里有什么不对......? 提前致谢

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

2 个答案:

答案 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项目了。