php - Laravel 5 phpunit is not running tests -
i'm been @ days no success. running laravel 5.1
. understand according laravel
doc.
an exampletest.php file provided in tests directory. after installing new laravel application, run phpunit on command line run tests.
ok after running phpunit
found not globally installed , located in vendor/bin/phpunit
. proceeding run vendor/bin/phpunit
gives me screen command options phpunit. not run tests.
i searched more , came across post mentioned symlink
issue. followed instructions in post no success. memory installed laravel
composer symlink
should not issue anyway.
these instructions involved deleting various files. did notice composer pulling files cache when updating. cleared cache , followed process again. still no success.
what tests not running? i'm @ wits end. since supposed run out box.
you need install phpunit globally: composer global require phpunit/phpunit
then can run phpunit
project root.
Comments
Post a Comment