Exemplo n.º 1
0
 public function testSaveProduct()
 {
     $this->model->setValues([100])->setData('option_type_id', -1)->setDataChanges(false)->isDeleted(false);
     $this->assertInstanceOf('\\Magento\\Catalog\\Model\\Product\\Option\\Value', $this->model->saveValues());
     $this->model->setData('is_delete', 1)->setData('option_type_id', 1)->setValues([100]);
     $this->assertInstanceOf('\\Magento\\Catalog\\Model\\Product\\Option\\Value', $this->model->saveValues());
 }