Neos\FluidAdaptor\Tests\Unit\ViewHelpers\Format\CropViewHelperTest::viewHelperAppendsCustomSuffix PHP Method

viewHelperAppendsCustomSuffix() public method

    public function viewHelperAppendsCustomSuffix()
    {
        $this->viewHelper->expects($this->once())->method('renderChildren')->will($this->returnValue('some text'));
        $actualResult = $this->viewHelper->render(3, '[custom suffix]');
        $this->assertEquals('som[custom suffix]', $actualResult);
    }