You are here

public function HttpKernelTest::testHandleWhenControllerThrowsAnExceptionAndCatchIsTrue in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/http-kernel/Tests/HttpKernelTest.php \Symfony\Component\HttpKernel\Tests\HttpKernelTest::testHandleWhenControllerThrowsAnExceptionAndCatchIsTrue()

@expectedException \RuntimeException

File

vendor/symfony/http-kernel/Tests/HttpKernelTest.php, line 29

Class

HttpKernelTest

Namespace

Symfony\Component\HttpKernel\Tests

Code

public function testHandleWhenControllerThrowsAnExceptionAndCatchIsTrue() {
  $kernel = new HttpKernel(new EventDispatcher(), $this
    ->getResolver(function () {
    throw new \RuntimeException();
  }));
  $kernel
    ->handle(new Request(), HttpKernelInterface::MASTER_REQUEST, true);
}