Package com.andrew

Examples of com.andrew.Parser


  @Test
  public void test() throws IOException{
   
    List<String> expectedLines = Files.readAllLines(FileSystems.getDefault().getPath(".", expectedOutputFilepath), Charset.defaultCharset());
   
    Parser parser = new Parser();   
    List<String> actualLines = parser.buildOutputFromCsv(inputFilepath);

    if (actualLines.size() != expectedLines.size()){
      fail("actualLines.size():"+actualLines.size()+" != expectedLines.size():"+expectedLines.size());
    }
   
View Full Code Here

TOP

Related Classes of com.andrew.Parser

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.