Package uk.ac.cam.ch.wwmm.oscar3.preprocessor

Examples of uk.ac.cam.ch.wwmm.oscar3.preprocessor.HTMLPreprocessor.canProcess()


  @Test
  public void test_canProcess()
  {
    HTMLPreprocessor pp = new HTMLPreprocessor();
    assertTrue(pp.canProcess(new File("target/test/junit_test.html")));
  }
 
  @Test
  public void test_process() throws IOException, Exception
  {
View Full Code Here


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

  @Test
  public void test_process() throws IOException, Exception
  {
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.