public function testSchemeRequirementForcesAbsoluteUrl() {
$routes = $this
->getRoutes('test', new Route('/', array(), array(
'_scheme' => 'https',
)));
$this
->assertEquals('https://localhost/app.php/', $this
->getGenerator($routes)
->generate('test'));
$routes = $this
->getRoutes('test', new Route('/', array(), array(
'_scheme' => 'http',
)));
$this
->assertEquals('http://localhost/app.php/', $this
->getGenerator($routes, array(
'scheme' => 'https',
))
->generate('test'));
}