CodeExplorer assertExceptionsAreCaught example
$this->
assertEquals('Bob/2.0',
$this->response->
getContent());
$this->
assertEquals(3,
$this->response->headers->
get('X-Response-Count'
));
} public function testShouldCatchExceptions() { $this->
catchExceptions();
$this->
setNextResponse();
$this->
request('GET', '/'
);
$this->
assertExceptionsAreCaught();
} public function testShouldCatchExceptionsWhenReloadingAndNoCacheRequest() { $this->
catchExceptions();
$this->
setNextResponse();
$this->cacheConfig
['allow_reload'
] = true;
$this->
request('GET', '/',
[],
[], false,
['Pragma' => 'no-cache'
]);
$this->
assertExceptionsAreCaught();
}