HTMLPreprocessor pp = new HTMLPreprocessor();
File file = new File("target/test/junit_test.html");
FileWriter fw = new FileWriter(file);
fw.write("<html><head><title>Test HTML</title></head><body><p>Paragraph1</p><p>Paragraph2</p></body></html>");
fw.close();
assertTrue(pp.process(file) != null);
}
}