Package org.molgenis.io.processor

Examples of org.molgenis.io.processor.CellProcessor


  }

  @Test
  public void addCellProcessor_data() throws IOException
  {
    CellProcessor processor = when(mock(CellProcessor.class).processData()).thenReturn(true).getMock();
    excelReader.addCellProcessor(processor);
    for (TupleReader sheetReader : excelReader)
      for (Tuple tuple : sheetReader)
        tuple.get("col2");
    verify(processor).process("val2");
View Full Code Here

TOP

Related Classes of org.molgenis.io.processor.CellProcessor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.