countWidgets() public method

See also: Bolt\Twig\Handler\WidgetHandler::countWidgets()
public countWidgets ( $location = null, $zone = 'frontend' )
Example #1
0
 public function testCountWidgets()
 {
     $app = $this->getApp();
     $handlers = $this->getTwigHandlers($app);
     $handlers['widget'] = $this->getMockHandler('WidgetHandler', 'countWidgets');
     $twig = new TwigExtension($app, $handlers, true);
     $twig->countWidgets(null, null);
 }