Exemplo n.º 1
0
 public function testProcessOldSuccess()
 {
     $payuplOrderId = 'ABC';
     $status = 'COMPLETED';
     $close = true;
     $this->transactionService->expects($this->once())->method('updateStatus')->with($this->equalTo($payuplOrderId), $this->equalTo($status), $this->equalTo($close));
     $this->model->processOld($payuplOrderId, $status, $close);
 }