每当我在命令提示符中运行PHPUnit时,我都会得到这个。
C:\Users\John\laravel-projects\layout-test\>phpunit tests\Unit\ExampleTest.php
PHPUnit 3.7.21 by Sebastian Bergmann.
Configuration read from C:\Users\John\laravel-projects\layout-test\phpunit.xml
Time: 0 seconds, Memory: 4.00Mb
它不执行命令,仅执行phpunit.xml
文件中的所有内容。但是,如果我使用以下命令运行phpunit:
vendor\bin\phpunit tests\Unit\ExampleTest.php
命令,测试成功运行。有没有办法来解决这个问题?我当前正在使用Laravel 5.6版。