Neos\FluidAdaptor\Tests\Unit\ViewHelpers\Format\UrlencodeViewHelperTest::renderDoesNotModifyValueIfItDoesNotContainSpecialCharacters PHP Метод

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

    public function renderDoesNotModifyValueIfItDoesNotContainSpecialCharacters()
    {
        $source = 'StringWithoutSpecialCharacters';
        $actualResult = $this->viewHelper->render($source);
        $this->assertSame($source, $actualResult);
    }