public function HttpKernelTest::testHandleWhenControllerThrowsAnExceptionAndCatchIsFalseAndNoListenerIsRegistered in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Tests/HttpKernelTest.php \Symfony\Component\HttpKernel\Tests\HttpKernelTest::testHandleWhenControllerThrowsAnExceptionAndCatchIsFalseAndNoListenerIsRegistered()
@expectedException \RuntimeException
File
- vendor/
symfony/ http-kernel/ Tests/ HttpKernelTest.php, line 39
Class
Namespace
Symfony\Component\HttpKernel\TestsCode
public function testHandleWhenControllerThrowsAnExceptionAndCatchIsFalseAndNoListenerIsRegistered() {
$kernel = new HttpKernel(new EventDispatcher(), $this
->getResolver(function () {
throw new \RuntimeException();
}));
$kernel
->handle(new Request(), HttpKernelInterface::MASTER_REQUEST, false);
}