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
In case somebody is searching for the answer here it is:
php vendor/phpunit/phpunit/phpunit
and make sure that your function contains the word "test"
for example
public function test_a_user_can_browse_threads() { ... }
edit: this works for laravel version 7