I\'m having a problem with my freshly installed Laravel.
when I\'m trying to use phpunit command to run default ExampleTest.php , I got thi
phpunit
ExampleTest.php
Running Lumen version 7.0, and was instructed to simply run phpunit
However running phpunit always produced No Test Executed error.
No Test Executed
Tried Admir Husić's advice, ran php vendor/phpunit/phpunit/phpunit, and problem solved, Lumen found the test file and executed it.
php vendor/phpunit/phpunit/phpunit
Thanks.