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

routeMatchesEmptyRequestPathIfUriPatternIsEmpty() public method

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