Bolt\Tests\Twig\WidgetHandlerTest::testCountWidgetsNoLocationDefault PHP Метод

testCountWidgetsNoLocationDefault() публичный Метод

    public function testCountWidgetsNoLocationDefault()
    {
        $app = $this->getStrictVariablesApp(false);
        $handler = new WidgetHandler($app);
        $widget = (new Widget())->setZone('frontend')->setLocation('gum-tree')->setContent('<blink>Drop Bear Warning!</blink>');
        $app['asset.queue.widget']->add($widget);
        $count = $handler->countWidgets();
        $this->assertSame(0, $count);
    }