String key = className + "+" + testName;
String scriptText = fileTable.remove(key);
if (scriptText == null) {
throw new Exception("Rule script not found " + key);
}
Submit submit = new Submit();
if (verbose) {
System.out.println("BMUNit : unloading text script = " + key);
}
List<ScriptText> scripts = new ArrayList<ScriptText>();
ScriptText script = new ScriptText(key, scriptText);
scripts.add(script);
submit.deleteScripts(scripts);
}