Ejemplo n.º 1
0
 public function testCanGetDifferentRows()
 {
     $parser = new CSVParser('test.csv');
     $firstRow = $parser->row();
     $secondRow = $parser->row();
     $this->assertNotEquals($firstRow, $secondRow);
 }