Exemplo n.º 1
0
 public function testHasElement()
 {
     $elementName = 'name';
     $this->structureMock->expects($this->once())
         ->method('hasElement')
         ->with($this->equalTo($elementName))
         ->will($this->returnValue(true));
     $this->assertTrue($this->model->hasElement($elementName));
 }
Exemplo n.º 2
0
 public function testRenameElement()
 {
     $blockName = 'block';
     $expBlockName = 'block_renamed';
     $containerName = 'container';
     $expContainerName = 'container_renamed';
     $block = $this->_layout->createBlock('Magento\\Framework\\View\\Element\\Text', $blockName);
     $this->_layout->addContainer($containerName, 'Container');
     $this->assertEquals($block, $this->_layout->getBlock($blockName));
     $this->_layout->renameElement($blockName, $expBlockName);
     $this->assertEquals($block, $this->_layout->getBlock($expBlockName));
     $this->_layout->hasElement($containerName);
     $this->_layout->renameElement($containerName, $expContainerName);
     $this->_layout->hasElement($expContainerName);
 }
Exemplo n.º 3
0
 /**
  * {@inheritdoc}
  */
 public function hasElement($name)
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasElement');
     if (!$pluginInfo) {
         return parent::hasElement($name);
     } else {
         return $this->___callPlugins('hasElement', func_get_args(), $pluginInfo);
     }
 }