Neos\Flow\Tests\Unit\Mvc\Routing\RouteTest::routeMatchesRequestPathContainingAllOfTheOptionalRouteParts PHP 메소드

routeMatchesRequestPathContainingAllOfTheOptionalRouteParts() 공개 메소드

    public function routeMatchesRequestPathContainingAllOfTheOptionalRouteParts()
    {
        $this->route->setUriPattern('page(.{@format})');
        $this->route->setDefaults(['@format' => 'html']);
        $this->assertTrue($this->routeMatchesPath('page.html'));
    }
RouteTest