}
if (csvDataSet.isEmpty()) {
logger.warn("Ignoring test case " + scriptFile + " " + csvFile.getName() + " because it contains no data row");
} else {
logger.info("Adding test case " + scriptFile + " " + csvFile.getName() + " " + xmlFile);
TestScript ts = new JythonTestScript(csvDataSet, xmlRequirements, scriptFile, directory, DirectoryTestSuite.this);
testScripts.add(ts);
}
} catch (IOException e) {
e.printStackTrace();
} catch (SAXException e) {