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

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

    public function findValueToMatchReturnsAnEmptyStringIfTheCalculatedUriPatternIsEmpty()
    {
        $this->identityRoutePart->setUriPattern('');
        $this->identityRoutePart->setSplitString('TheSplitString');
        $this->assertSame('', $this->identityRoutePart->_call('findValueToMatch', 'First/Part/Of/The/Complete/RoutPath/TheSplitString/SomeThingElse'));
    }
IdentityRoutePartTest