showImage() public method

See also: Bolt\Twig\Handler\ImageHandler::showImage()
public showImage ( $filename = null, $width = null, $height = null, $crop = null )
Example #1
0
 public function testShowImage()
 {
     $app = $this->getApp();
     $handlers = $this->getTwigHandlers($app);
     $handlers['image'] = $this->getMockHandler('ImageHandler', 'showImage');
     $twig = new TwigExtension($app, $handlers, true);
     $twig->showImage(null, null, null, null);
 }