Neos\Flow\Tests\Unit\Mvc\Routing\DynamicRoutePartTest::dynamicRoutePartDoesNotChangeCaseOfValueIfLowerCaseIsFale PHP Method

dynamicRoutePartDoesNotChangeCaseOfValueIfLowerCaseIsFale() public method

    public function dynamicRoutePartDoesNotChangeCaseOfValueIfLowerCaseIsFale()
    {
        $this->dynamicRoutPart->setName('Foo');
        $this->dynamicRoutPart->setLowerCase(false);
        $routeValues = ['Foo' => 'Bar'];
        $this->assertTrue($this->dynamicRoutPart->resolve($routeValues));
        $this->assertEquals('Bar', $this->dynamicRoutPart->getValue(), 'Dynamic Route Part should not change the case of the value if lowerCase is false.');
    }
DynamicRoutePartTest