= Examples = This is some very long text This is so... This is some very long text This is some very [more] John Doe John Doe WARNING: This tag does NOT handle tags currently. WARNING: This tag doesn't care about multibyte charsets currently.
Inheritance: extends Neos\FluidAdaptor\Core\ViewHelper\AbstractViewHelper
 /**
  * @test
  */
 public function viewHelperHandlesMultiByteValuesCorrectly()
 {
     $this->viewHelper->expects($this->never())->method('renderChildren');
     $actualResult = $this->viewHelper->render(3, '...', 'Äßütest');
     $this->assertEquals('Äßü...', $actualResult);
 }