Neos\Flow\Tests\Unit\Mvc\Routing\IdentityRoutePartTest::matchValueSetsCaseSensitiveFlagIfLowerCaseIsFalse PHP Method

matchValueSetsCaseSensitiveFlagIfLowerCaseIsFalse() public method

    public function matchValueSetsCaseSensitiveFlagIfLowerCaseIsFalse()
    {
        $this->mockObjectPathMappingRepository->expects($this->once())->method('findOneByObjectTypeUriPatternAndPathSegment')->with('SomeObjectType', 'SomeUriPattern', 'TheRoutePath', true);
        $this->identityRoutePart->setObjectType('SomeObjectType');
        $this->identityRoutePart->setUriPattern('SomeUriPattern');
        $this->identityRoutePart->setLowerCase(false);
        $this->identityRoutePart->_call('matchValue', 'TheRoutePath');
    }
IdentityRoutePartTest