示例#1
0
 /**
  * Test getCreditCardRejectSpecificDateCSV using a date with no data.
  */
 public function testReportLinkgetCreditCardRejectSpecificDateCSVNoData()
 {
     $iats = new ReportLink(self::$agentCode, self::$password);
     $time = mktime(0, 0, 0, 1, 1, 2050);
     $request = array('date' => $iats->getFormattedDate($time), 'customerIPAddress' => '');
     $response = $iats->getCreditCardRejectSpecificDateCSV($request);
     $this->assertEquals('', $response);
 }