Example #1
0
 /**
  * @return \Magento\Framework\DataObject
  */
 protected function _addCustomerToStorage()
 {
     $customer = new \Magento\Framework\DataObject(['id' => 1, 'website_id' => 1, 'email' => '*****@*****.**']);
     $this->_model->addCustomer($customer);
     return $customer;
 }