Autarky\Testing\TestCase::enableExceptionHandling PHP Метод

enableExceptionHandling() защищенный Метод

By default, uncaught exceptions in the application will simply be thrown again, meaning you have to call setExpectedException or similar if an exception is expected behaviour. If instead you want the application error handler to do its job and return a response, call this method.
protected enableExceptionHandling ( ) : void
Результат void
    protected function enableExceptionHandling()
    {
        $this->app->getErrorHandler()->setRethrow(false);
    }