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

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

public findValueToMatchTests ( string $routePath, string $uriPattern, string $splitString, string $expectedResult ) : void
$routePath string
$uriPattern string
$splitString string
$expectedResult string
Результат void
    public function findValueToMatchTests($routePath, $uriPattern, $splitString, $expectedResult)
    {
        $this->identityRoutePart->setUriPattern($uriPattern);
        $this->identityRoutePart->setSplitString($splitString);
        $this->assertSame($expectedResult, $this->identityRoutePart->_call('findValueToMatch', $routePath));
    }
IdentityRoutePartTest