Neos\Flow\Tests\Unit\Mvc\Routing\DynamicRoutePartTest::dynamicRoutePartDoesNotMatchIfNameIsNotSet PHP Method

dynamicRoutePartDoesNotMatchIfNameIsNotSet() public method

    public function dynamicRoutePartDoesNotMatchIfNameIsNotSet()
    {
        $routePath = 'foo';
        $this->assertFalse($this->dynamicRoutPart->match($routePath), 'Dynamic Route Part should not match if name is not set.');
    }
DynamicRoutePartTest