Neos\Flow\Tests\Unit\Mvc\Routing\RouteTest::routeDoesNotMatchRequestPathContainingOnlySomeOfTheOptionalRouteParts PHP Метод

routeDoesNotMatchRequestPathContainingOnlySomeOfTheOptionalRouteParts() публичный Метод

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