public function testRenderWithControllerReference() {
$strategy = new InlineFragmentRenderer($this
->getKernel($this
->returnValue(new Response('foo'))));
$this
->assertEquals('foo', $strategy
->render(new ControllerReference('main_controller', array(), array()), Request::create('/'))
->getContent());
}