assertEquals(correct0, cleaned0);
// Parse the second file using the template.
String document1 = Utils.readFile("data/test/fisk2.html");
String correct1 = Utils.readFile("data/validation/fisk2.content.html");
String cleaned1 = template.clean(document1);
correct1 = correct1.replaceAll("\\s", "");
cleaned1 = cleaned1.replaceAll("\\s", "");
assertEquals(correct1, cleaned1);