public function UrlGeneratorTest::testSchemeRequirementDoesNothingIfSameCurrentScheme in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/routing/Tests/Generator/UrlGeneratorTest.php \Symfony\Component\Routing\Tests\Generator\UrlGeneratorTest::testSchemeRequirementDoesNothingIfSameCurrentScheme()
File
- vendor/
symfony/ routing/ Tests/ Generator/ UrlGeneratorTest.php, line 245
Class
Namespace
Symfony\Component\Routing\Tests\GeneratorCode
public function testSchemeRequirementDoesNothingIfSameCurrentScheme() {
$routes = $this
->getRoutes('test', new Route('/', array(), array(), array(), '', array(
'http',
)));
$this
->assertEquals('/app.php/', $this
->getGenerator($routes)
->generate('test'));
$routes = $this
->getRoutes('test', new Route('/', array(), array(), array(), '', array(
'https',
)));
$this
->assertEquals('/app.php/', $this
->getGenerator($routes, array(
'scheme' => 'https',
))
->generate('test'));
}