// Extract the text from the file as a vector
Vector foundTextV = te.getTextAsVector();
// Ensure they match
assertEquals(allTheText.length,foundTextV.size());
for(int i=0; i<allTheText.length; i++) {
String foundText = (String)foundTextV.get(i);
assertEquals(allTheText[i],foundText);
}