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