{
String badsamples[][] = getBadListings();
for (int i = 0; i < badsamples.length; i++)
{
FTPFileEntryParser parser = getParser();
for (int j = 0; j < badsamples[i].length; j++)
{
String test = badsamples[i][j];
FTPFile f = parser.parseFTPEntry(test);
assertNull("Should have Failed to parse " + test,
nullFileOrNullDate(f));
doAdditionalBadTests(test, f);
}