Author: Vincent Touzet (vincent.touzet@gmail.com)
Inheritance: implements SourceIteratorInterface
 public function testNoHeaders()
 {
     $iterator = new CsvSourceIterator($this->filename, ',', '"', '\\', false);
     $i = 0;
     foreach ($iterator as $value) {
         $this->assertTrue(is_array($value));
         $this->assertEquals(2, count($value));
         $this->assertEquals($i, $iterator->key());
         ++$i;
     }
     $this->assertEquals(4, $i);
 }