}
@Test
public void addCellProcessor_header() throws IOException
{
CellProcessor processor = when(mock(CellProcessor.class).processHeader()).thenReturn(true).getMock();
CsvReader csvReader = new CsvReader(new StringReader("col1,col2\nval1,val2"), ',', true);
try
{
csvReader.addCellProcessor(processor);
for (@SuppressWarnings("unused")