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
The problem here is that you are running PHPUnit installed on your system that is pretty old and not PHPUnit that should be run for this project.
To make sure you run the PHPUnit that is really installed for this project you should rather run:
vendor/bin/phpunit
or
vendor/bin/phpunit.bat