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