Esempio n. 1
0
 /**
  * @covers \Magento\Eav\Model\Attribute\Data\Select::compactValue
  */
 public function testCompactValueWithFalseValue()
 {
     $entityMock = $this->getMock('\\Magento\\Framework\\Model\\AbstractModel', [], [], '', false);
     $entityMock->expects($this->never())->method('setData');
     $this->model->setEntity($entityMock);
     $this->model->compactValue(false);
 }