public boolean executeTest(lib.TestParameters param) {
DynamicClassLoader dcl = new DynamicClassLoader();
log = (LogWriter)dcl.getInstance((String)param.get("LogWriter"));
debug = ((Boolean) param.get("DebugIsActive")).booleanValue();
DescGetter dg = new APIDescGetter();
String job = (String) param.get("TestJob");
boolean retValue = true;
//get Job-Descriptions
log.println("Getting Descriptions for Job: "+job);
DescEntry[] entries = dg.getDescriptionFor(job,
(String) param.get("DescriptionPath"),debug);
if (entries == null ) {
log.println("Couldn't get Description for Job");
return false;