http://localhost/laravel/app/tests/ExampleTest.php
if i run laravel it shows the following error
Fatal error: Class \'TestCase\' not found in D
Check if your tests directory is listed on the classmap property of your composer.json file.
tests
classmap
composer.json
If not add it and run composer dump-autoload.
composer dump-autoload
"autoload-dev": { "classmap": [ "tests", "database/" ] },