Examples of PlainTextPreprocessor


Examples of uk.ac.cam.ch.wwmm.oscar3.preprocessor.PlainTextPreprocessor

  }

  @Test
  public void test_canProcess()
  {
    PlainTextPreprocessor pp = new PlainTextPreprocessor();
    assertTrue(pp.canProcess(new File("target/test/junit_test.txt")));
  }
View Full Code Here

Examples of uk.ac.cam.ch.wwmm.oscar3.preprocessor.PlainTextPreprocessor

  }

  @Test
  public void test_process() throws IOException, Exception
  {
    PlainTextPreprocessor pp = new PlainTextPreprocessor();
    File file = new File("target/test/junit_test.txt");
    FileWriter fw = new FileWriter(file);
    fw.write("Test Plain Text\n\nParagraph1\nParagraph2\n");
    fw.close();
    assertTrue(pp.process(file) != null);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.