Neos\Flow\Tests\Unit\Mvc\Routing\RouteTest::defaultValuesAreSetForUriPatternSegmentsWithMultipleOptionalRouteParts PHP Method

defaultValuesAreSetForUriPatternSegmentsWithMultipleOptionalRouteParts() public method

    public function defaultValuesAreSetForUriPatternSegmentsWithMultipleOptionalRouteParts()
    {
        $this->route->setUriPattern('{key1}-({key2})/({key3}).({key4}.{@format})');
        $defaults = ['key1' => 'defaultValue1', 'key2' => 'defaultValue2', 'key3' => 'defaultValue3', 'key4' => 'defaultValue4', '@format' => 'xml'];
        $this->route->setDefaults($defaults);
        $this->routeMatchesPath('foo-/.bar.xml');
        $this->assertEquals(['key1' => 'foo', 'key2' => 'defaultValue2', 'key3' => 'defaultValue3', 'key4' => 'bar', '@format' => 'xml'], $this->route->getMatchResults(), 'Route match results should be set correctly on successful match');
    }
RouteTest