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

routeMatchesRequestPathContainingNoneOfTheOptionalRouteParts() 공개 메소드

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