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

testGenerateFrontendWithoutLocale() public method

Tests generating generating the "contao_frontend" route without locale.
    public function testGenerateFrontendWithoutLocale()
    {
        $loader = new FrontendLoader(false);
        $collection = $loader->load('.', 'bundles');
        $router = $this->getRouter($collection);
        $this->assertEquals('/foobar.html', $router->generate('contao_frontend', ['alias' => 'foobar']));
    }