Deprecate support for file paths in __construct() and parse()

See https://github.com/parsecsv/parsecsv-for-php/issues/198
This commit is contained in:
Fonata
2021-04-02 20:12:00 +02:00
committed by Fonata
parent 9c5eee23f6
commit d1186fcafa
4 changed files with 69 additions and 23 deletions

View File

@@ -60,15 +60,15 @@ class DataRowCountTest extends TestCase {
$this->csv->heading = false;
$this->csv->enclosure = '"';
$sInput = "86545235689,a\r\n34365587654,b\r\n13469874576,\"c\r\nd\"";
$this->csv->load_data($sInput);
$this->assertEquals(3, $this->csv->getTotalDataRowCount());
$this->csv->loadDataString($sInput);
self::assertEquals(3, $this->csv->getTotalDataRowCount());
}
public function testGetTotalRowCountSingleEnclosure() {
$this->csv->heading = false;
$this->csv->enclosure = "'";
$sInput = "86545235689,a\r\n34365587654,b\r\n13469874576,\'c\r\nd\'";
$this->csv->load_data($sInput);
$this->csv->loadDataString($sInput);
$this->assertEquals(3, $this->csv->getTotalDataRowCount());
}
@@ -76,7 +76,7 @@ class DataRowCountTest extends TestCase {
$this->csv->heading = false;
$this->csv->enclosure = "'";
$sInput = "86545235689";
$this->csv->load_data($sInput);
$this->csv->loadDataString($sInput);
$this->assertEquals(1, $this->csv->getTotalDataRowCount());
}
}