/**
  * @expectedException InvalidArgumentException
  */
 public function testSetTypeUnsupportedValueThrowsException()
 {
     $csvField = new CsvField(current($this->csvData));
     $csvField->setType('foobar');
 }