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

routeDoesNotMatchIfRequestPathIsDifferentFromStaticUriPattern() public method

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