Bolt\Tests\Twig\UtilsHandlerTest::testPrintFirebugNoSafeDebugOnArrayString PHP Method

testPrintFirebugNoSafeDebugOnArrayString() public method

    public function testPrintFirebugNoSafeDebugOnArrayString()
    {
        $app = $this->getApp();
        $this->stubVarDumper($app);
        $app['debug'] = true;
        $app['config']->set('general/debug_show_loggedoff', true);
        $logger = $this->getMockMonolog();
        $logger->expects($this->atLeastOnce())->method('info');
        $app['logger.firebug'] = $logger;
        $handler = new UtilsHandler($app);
        $handler->printFirebug(['koala', 'clippy'], 'Danger Detected!', false);
    }