execute() public method

{@inheritDoc}
public execute ( $request )
Esempio n. 1
0
 /**
  * @test
  */
 public function shouldExecuteDoVoidIfTransactionIdSet()
 {
     $gatewayMock = $this->createGatewayMock();
     $gatewayMock->expects($this->exactly(2))->method('execute')->withConsecutive(array($this->isInstanceOf(DoVoid::class)), array($this->isInstanceOf(Sync::class)));
     $action = new CancelAction();
     $action->setGateway($gatewayMock);
     $request = new Cancel(array('TRANSACTIONID' => 'theId'));
     $action->execute($request);
 }