public function testRefund()
 {
     $this->senderMock->expects($this->once())->method('send')->with('http://test/front/service/rest/process', array('method' => 'refund', 'params' => array('TRANSACTIONID' => 'A1', 'IDENTIFIER' => 'i', 'OPERATIONTYPE' => 'refund', 'ORDERID' => 42, 'VERSION' => '2.0', 'HASH' => 'dummy', 'DESCRIPTION' => 'desc')));
     $this->api->refund('A1', 42, 'desc');
 }