Contao\CoreBundle\Test\Routing\UrlGeneratorTest::testRemovesLocale PHP Méthode

testRemovesLocale() public méthode

Tests that the locale is removed if prepend_locale is not set.
public testRemovesLocale ( )
    public function testRemovesLocale()
    {
        $params = $this->getGenerator(false)->generate('foobar', ['_locale' => 'en']);
        $this->assertArrayNotHasKey('_locale', $params);
        $params = $this->getGenerator(true)->generate('foobar', ['_locale' => 'en']);
        $this->assertArrayHasKey('_locale', $params);
    }