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

routeMatchesIfRequestPathIsEqualToStaticUriPattern() public method

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