in src/main/java/org/apache/openejb/cts/deploy/StandardDeployment14.java [552:564]
protected void dumpDeployedMods(Hashtable map) {
StringBuffer message = new StringBuffer("Deployed Modules: \n");
if (map == null || map.keySet() == null) {
TestUtil.logHarness("There are no deployed modules, returning");
return;
}
Iterator iter = map.keySet().iterator();
while (iter.hasNext()) {
String modName = (String) iter.next();
message.append("\t" + modName + "\n");
}
TestUtil.logHarness(message.toString());
}