Neos\Media\Tests\Unit\ViewHelpers\Uri\ImageViewHelperTest::doNotThrowExceptionIfImageIsNull PHP 메소드

doNotThrowExceptionIfImageIsNull() 공개 메소드

    public function doNotThrowExceptionIfImageIsNull()
    {
        $this->viewHelper->initialize();
        $actualResult = $this->viewHelper->render(null);
        $this->assertEquals('', $actualResult);
    }