eZ\Publish\Core\MVC\Symfony\Routing\Tests\UrlAliasGeneratorTest::providerTestDoGenerate PHP Method

providerTestDoGenerate() public method

    public function providerTestDoGenerate()
    {
        return array(array(new URLAlias(array('path' => '/foo/bar')), array(), '/foo/bar'), array(new URLAlias(array('path' => '/foo/bar')), array('some' => 'thing'), '/foo/bar?some=thing'), array(new URLAlias(array('path' => '/foo/bar')), array('some' => 'thing', 'truc' => 'muche'), '/foo/bar?some=thing&truc=muche'));
    }