Neos\Flow\Tests\Unit\Mvc\Routing\IdentityRoutePartTest::findValueToMatchReturnsAnEmptyStringIfTheRoutePathIsEmpty PHP Метод

findValueToMatchReturnsAnEmptyStringIfTheRoutePathIsEmpty() публичный Метод

    public function findValueToMatchReturnsAnEmptyStringIfTheRoutePathIsEmpty()
    {
        $this->assertSame('', $this->identityRoutePart->_call('findValueToMatch', null));
        $this->assertSame('', $this->identityRoutePart->_call('findValueToMatch', ''));
        $this->assertSame('', $this->identityRoutePart->_call('findValueToMatch', '/'));
    }
IdentityRoutePartTest