public function test_echeckRedepoist_missing_litleTxnId()
 {
     $hash_in = array('amount' => '123456', 'verify' => 'true', 'orderId' => '12345', 'orderSource' => 'ecommerce', 'echeckToken' => array('accType' => 'Checking', 'litleToken' => '1234565789012', 'routingNum' => '123456789', 'checkNum' => '123455'), 'billToAddress' => array('name' => 'Bob', 'city' => 'lowell', 'state' => 'MA', 'email' => 'litle.com'));
     $litleTest = new LitleOnlineRequest();
     $this->setExpectedException('InvalidArgumentException', 'Missing Required Field: /litleTxnId/');
     $retOb = $litleTest->echeckRedepositRequest($hash_in);
 }
 public function test_echeckRedepoist()
 {
     $hash_in = array('id' => '1211', 'litleTxnId' => '123456789012345678', 'amount' => '123');
     $litle = new LitleOnlineRequest($treeResponse = true);
     $response = $litle->echeckRedepositRequest($hash_in);
     $this->assertEquals('001', $response->echeckRedepositResponse->response);
 }
 public function test_merchantData()
 {
     $hash_in = array('litleTxnId' => '123123', 'merchantData' => array('campaign' => 'camping'));
     $mock = $this->getMock('litle\\sdk\\LitleXmlMapper');
     $mock->expects($this->once())->method('request')->with($this->matchesRegularExpression('/.*<litleTxnId>123123<\\/litleTxnId>.*<merchantData>.*<campaign>camping<\\/campaign>.*<\\/merchantData>/'));
     $litleTest = new LitleOnlineRequest();
     $litleTest->newXML = $mock;
     $litleTest->echeckRedepositRequest($hash_in);
 }
 /**
  * Make an echeckRedeposit API request.
  *
  * This method wraps the LitleOnlineRequest.
  *
  * @param array $hash_in
  *   The request data.
  *
  * @return DOMDocument|SimpleXMLElement
  *   The response.
  */
 public function echeckRedepositRequest($hash_in)
 {
     return $this->request->echeckRedepositRequest($hash_in);
 }