简体   繁体   中英

Laravel 5.2 Testing : Test is not running

I have create a test via terminal with command :

php artisan make:test UserTest

Now i want to run the test with the following command :

vendor/bin/UserTest

But it returns

bash: vendor/bin/UserTest: No such file or directory

PHPunit is Installed. I have checked.

Am i missing something ?

Run tests with this command from Laravel root project directory:

vendor/bin/phpunit

If you want to run custom package tests, use:

vendor/bin/phpunit packages/name/package/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM