protected void tearDown() {}
public void testIt() throws ProtocolException, ParseException {
String urlString;
Protocol protocol;
Content content;
Parser parser;
Parse parse;
for (int i=0; i<sampleFiles.length; i++) {
urlString = "file:" + sampleDir + fileSeparator + sampleFiles[i];
protocol = ProtocolFactory.getProtocol(urlString);
content = protocol.getContent(urlString);
parser = ParserFactory.getParser(content.getContentType(), urlString);
parse = parser.getParse(content);
int index = parse.getText().indexOf(expectedText);
assertTrue(index > 0);
}