Top "Laravel-testing" questions

Use this tag for question about Laravel testing

Laravel Testing : Call to undefined function App\Http\Controllers\get()

I am going through a Laravel tutorial and stuck at a "Call to undefined function" error. So far I have 20 …

laravel laravel-5 laravel-testing
Illuminate\Validation\ValidationException : The given data was invalid. Called when trying to get the json from a response while testing

I have the following test: public function testStoreMemberValidation() { $response = $this->withExceptionHandling()->post('/api/members', [ "name" => "…

laravel laravel-validation laravel-testing
Test Queue functionality?

According to the Laravel Documentation, I can use Queue::fake(); prevent jobs from being queued. What is not clear how …

php laravel phpunit mockery laravel-testing