I\'m using phpunit with Laravel 4 framework. Why is it that when there\'s a PHP error during the tests, no error messages are shown (eg: missing method)?
How can we
You can use something like below to exclusively print errors to console.
$response = $this->get('https://stackoverflow.com/questions/18047844-NotFound/'); $response->dumpSession($keys = ['error']);