public function testSubscriptionPaymentWithNTime()
 {
     $this->senderMock->expects($this->once())->method('send')->with('http://test/front/service/rest/process', array('method' => 'payment', 'params' => array('ALIAS' => 'A1', 'ALIASMODE' => 'subscription', 'AMOUNTS' => array('2015-01-01' => 100, '2015-02-01' => 100, '2015-03-01' => 100), 'IDENTIFIER' => 'i', 'OPERATIONTYPE' => 'payment', 'ORDERID' => 42, 'CLIENTIDENT' => 'ident', 'CLIENTEMAIL' => '*****@*****.**', 'CLIENTIP' => '1.1.1.1', 'CLIENTUSERAGENT' => 'Firefox', 'VERSION' => '2.0', 'HASH' => 'dummy', 'DESCRIPTION' => 'desc')));
     $amounts = array('2015-01-01' => 100, '2015-02-01' => 100, '2015-03-01' => 100);
     $this->api->subscriptionPayment('A1', $amounts, 42, 'ident', '*****@*****.**', '1.1.1.1', 'desc', 'Firefox');
 }