Пример #1
0
 /**
  * @covers \Magento\Eav\Model\Attribute\Data\AbstractData::getEntity
  * @covers \Magento\Eav\Model\Attribute\Data\AbstractData::setEntity
  */
 public function testGetEntity()
 {
     $entityMock = $this->getMock('\\Magento\\Framework\\Model\\AbstractModel', [], [], '', false);
     $this->model->setEntity($entityMock);
     $this->assertEquals($entityMock, $this->model->getEntity());
 }