if (c != null) {
tests = c.iterator();
while (tests.hasNext()) {
Parameters testdata = (Parameters)tests.next();
String expected = testdata.get("expected");
String output = "";
log.println(testdata.get("description"));
output = oObj.getFunctionName();
log.println("expected: " + expected + ", output: " + output);
result &= output.equals(expected);