Test class with php artisan test Class
I try
php artisan test --filter FooxTest
error:Fatal error: because the name is already in use...
have you got 2 tests called 'FooxTest' ?
run composer dump-autoload which might resolve it.
I've tried both
php artisan test --filter test_method_name
and
php artisan test --filter ClassName
and both work for me.
You can also run tests via their directories
php artisan test tests/Unit/SomeDirectory
Please or to participate in this conversation.