Esempio n. 1
0
 /**
  * Customer Notification Applicable check method
  *
  * @param  \Magento\Sales\Model\Order\Status\History $history
  * @return bool
  */
 public function isCustomerNotificationNotApplicable(\Magento\Sales\Model\Order\Status\History $history)
 {
     return $history->isCustomerNotificationNotApplicable();
 }
Esempio n. 2
0
 public function testSetIsCustomerNotifiedNotApplicable()
 {
     $this->model->setIsCustomerNotified();
     $this->assertEquals($this->model->isCustomerNotificationNotApplicable(), $this->model->getIsCustomerNotified());
 }