private void testProbeTimings(int iterationCount, StringBuffer results) throws Exception
{
results.append("\n+++ testTimings()\n");
Object obj = new InitialContext().lookup("java:comp/env/ejb/ProbeHome");
Class homeClass = obj.getClass();
ProbeHome home = null;
results.append("ProbeHome Proxy class info:\n");
Debug.displayClassInfo(homeClass, results);
results.append("Local ProbeHome.class info:\n");
Debug.displayClassInfo(ProbeHome.class, results);
home = (ProbeHome) obj;
results.append("\nFound ProbeHome");
Probe bean = home.create();
results.append("\nCreated Probe");
warmup(bean, results);
noop(bean, iterationCount, results);
ping(bean, iterationCount, results);
echo(bean, iterationCount, results);