Laravel 4 PHP Fatal error: Class 'Illuminate\Foundation\Testing\TestCase' not found

前端 未结 3 879
Happy的楠姐
Happy的楠姐 2021-01-06 15:34

I get the following error when I run phpunit with Laravel 4.

PHP Fatal error:  Class \'Illuminate\\Foundation\\Testing\\TestCase\' not found in 
3条回答
  •  花落未央
    2021-01-06 16:22

    It looks like the autoload doesn't include the new requirement.

    Be sure to run composer update to ensure that the file are downloaded and the autoloader is updated with that source.

    If the files were downloaded and 'installed' manually run php composer dump-autoload to rebuild the autoload file.

提交回复
热议问题