/**
  * @ticket 41361
  */
 public function testGetNextRowWithEOL()
 {
     $file = SugarTestImportUtilities::createFileWithEOL(1, 1);
     $importFile = new ImportFile($file, ',', '"', TRUE, FALSE);
     $row = $importFile->getNextRow();
     // both \r\n and \n should be properly replaced with PHP_EOL
     $this->assertEquals(array("start0" . PHP_EOL . "0" . PHP_EOL . "end"), $row);
 }