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

routeDoesNotMatchIfRequestPathIsEqualToStaticUriPatternWithoutSlashes() public method

    public function routeDoesNotMatchIfRequestPathIsEqualToStaticUriPatternWithoutSlashes()
    {
        $this->route->setUriPattern('required1/required2');
        $this->assertFalse($this->routeMatchesPath('required1required2'));
    }
RouteTest