예제 #1
0
 /**
  * test order cancel service
  */
 public function testInvoke()
 {
     $this->orderRepositoryMock->expects($this->once())->method('get')->with($this->equalTo(1))->will($this->returnValue($this->orderMock));
     $this->orderMock->expects($this->once())->method('cancel')->will($this->returnSelf());
     $this->assertTrue($this->orderCancel->invoke(1));
 }
예제 #2
0
 /**
  * @param int $id
  * @return bool
  * @throws \Magento\Framework\Exception\NoSuchEntityException
  */
 public function cancel($id)
 {
     return $this->orderCancel->invoke($id);
 }