public function testExecutionOfDisabledBlock()
 {
     $stringBlock = new StringBlock();
     $stringBlock->setEnabled(false);
     $templatingMock = $this->getMockBuilder('Symfony\\Bundle\\FrameworkBundle\\Templating\\EngineInterface')->disableOriginalConstructor()->getMock();
     $templatingMock->expects($this->never())->method('renderResponse');
     $stringBlockService = new StringBlockService('test-service', $templatingMock);
     $stringBlockService->execute(new BlockContext($stringBlock));
 }