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

routeMatchesRequestPathContainingNoneOfTheOptionalRouteParts() public method

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