public function testTwigRender()
 {
     $app = $this->console->getSilexApplication();
     /** @var \Twig_Environment $twig */
     $twig = $app['twig'];
     $content = trim($twig->render('test.twig'));
     $this->assertEquals('https://example.com/test.html', $content);
 }