public function HttpKernelTest::testHandleWhenTheControllerIsAClosure in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Tests/HttpKernelTest.php \Symfony\Component\HttpKernel\Tests\HttpKernelTest::testHandleWhenTheControllerIsAClosure()
File
- vendor/
symfony/ http-kernel/ Tests/ HttpKernelTest.php, line 168
Class
Namespace
Symfony\Component\HttpKernel\TestsCode
public function testHandleWhenTheControllerIsAClosure() {
$response = new Response('foo');
$dispatcher = new EventDispatcher();
$kernel = new HttpKernel($dispatcher, $this
->getResolver(function () use ($response) {
return $response;
}));
$this
->assertSame($response, $kernel
->handle(new Request()));
}