public function testHandleWhenTheControllerIsAStaticArray() {
$dispatcher = new EventDispatcher();
$kernel = new HttpKernel($dispatcher, $this
->getResolver(array(
'Symfony\\Component\\HttpKernel\\Tests\\Controller',
'staticcontroller',
)));
$this
->assertResponseEquals(new Response('foo'), $kernel
->handle(new Request()));
}