expectedOutput.add("Zephania Bauer,Jermaine Gordon,Vincent Moon,Steven Pierce,Jasper Campos");
expectedOutput.add("Kennedy Bailey,Plato Atkinson,Stuart Guy,Rooney Levy,Judah Benson");
int count = 0;
for (FileStatus fileStat: status) {
logger.debug("File status is " + fileStat.getPath() );
FSDataInputStream in = outputFS.open(fileStat.getPath());
String line = null;
while ((line = in.readLine()) != null) {
logger.debug("Output is " + line);
assertTrue("Matched output " + line , expectedOutput.contains(line));
expectedOutput.remove(line);
count++;
}
in.close();
}
assertEquals(5, count);
}