Ejemplo n.º 1
0
 /**
  * Test processACHEFT.
  *
  * @depends testCredentials
  */
 public function testProcessLinkprocessACHEFT()
 {
     // Create and populate the request object.
     $request = array('customerIPAddress' => '', 'invoiceNum' => '00000001', 'firstName' => 'Test', 'lastName' => 'Account', 'address' => '1234 Any Street', 'city' => 'Schenectady', 'state' => 'NY', 'zipCode' => '12345', 'accountNum' => '02100002100000000000000001', 'accountType' => 'CHECKING', 'total' => '5', 'comment' => 'Process direct debit test.', 'currency' => 'USD');
     $iats = new ProcessLink(self::$agentCode, self::$password);
     $response = $iats->processACHEFT($request);
     $this->assertStringStartsWith('OK', trim($response['AUTHORIZATIONRESULT']));
 }