Neos\Flow\Tests\Unit\Http\UriTemplateTest::uriTemplatesAreExpandedCorrectly PHP Method

uriTemplatesAreExpandedCorrectly() public method

public uriTemplatesAreExpandedCorrectly ( $templateString, array $variables, $expectedString )
$variables array
    public function uriTemplatesAreExpandedCorrectly($templateString, array $variables, $expectedString)
    {
        $expandedTemplate = UriTemplate::expand($templateString, $variables);
        $this->assertEquals($expectedString, $expandedTemplate);
    }