getWidgets() public method

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