You are here

public function HttpKernelTest::testHandleWhenTheControllerDoesNotReturnAResponse 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::testHandleWhenTheControllerDoesNotReturnAResponse()

@expectedException \LogicException

File

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

Class

HttpKernelTest

Namespace

Symfony\Component\HttpKernel\Tests

Code

public function testHandleWhenTheControllerDoesNotReturnAResponse() {
  $dispatcher = new EventDispatcher();
  $kernel = new HttpKernel($dispatcher, $this
    ->getResolver(function () {
    return 'foo';
  }));
  $kernel
    ->handle(new Request());
}