testJson() public method

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