Contao\CoreBundle\Test\Routing\FrontendLoaderTest::testGenerateIndexWithoutLocale PHP Method

testGenerateIndexWithoutLocale() public method

Tests generating the "contao_index" route without locale.
    public function testGenerateIndexWithoutLocale()
    {
        $loader = new FrontendLoader(false);
        $collection = $loader->load('.', 'bundles');
        $router = $this->getRouter($collection);
        $this->assertEquals('/', $router->generate('contao_index'));
    }