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

routeMatchesIfStaticSegmentsMatchAndASegmentExistsForAllDynamicUriPartSegments() public method

    public function routeMatchesIfStaticSegmentsMatchAndASegmentExistsForAllDynamicUriPartSegments()
    {
        $this->route->setUriPattern('foo/{bar}');
        $this->assertTrue($this->routeMatchesPath('foo/someValue'), '"foo/{bar}"-Route should match "foo/someValue"-request.');
    }
RouteTest