Example #1
0
 /**
  * Check that blank lines are properly skipped
  */
 public function test_Csv_Reader_Removes_Blank_Lines()
 {
     $reader = new Csv_Reader($this->files['blank-lines-200']);
     foreach ($reader as $row) {
         continue;
     }
     $this->assertEqual($reader->getSkippedLines(), 13);
 }