redis = Redis::connection(); $this->redis->flushall(); $this->prepareForTests(); } /** * Migrates the database and set the mailer to 'pretend'. * This will cause the tests to run quickly. * */ protected function prepareForTests() { Artisan::call('doctrine:migrations:migrate', ['--connection=model ']); Mail::fake(); Queue::fake(); $this->seed('TestSeeder'); } }