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

routeMatchesEmptyRequestPathIfUriPatternIsEmpty() 공개 메소드

    public function routeMatchesEmptyRequestPathIfUriPatternIsEmpty()
    {
        $this->route->setUriPattern('');
        $this->assertTrue($this->routeMatchesPath(''), 'Route should match if URI Pattern and RequestPath are empty.');
    }
RouteTest