log.info("Method stats before invocation: " + methodStats);
Assert.assertTrue("Method stats should be empty", methodStats.isEmpty());
// Invoke upon the EJB locally via the Remote access delegate
LocalExpositionRemoteBusiness remoteBusiness = (LocalExpositionRemoteBusiness) getInitialContext().lookup(LocalExpositionBean.class.getSimpleName() + "/remote");
remoteBusiness.echoViaLocal("Some test String");
// Ensure the stats reflect the invocation in the SLSB
invocationStats = getInvocationStats(slsbComponent);
methodStats = invocationStats.methodStats;
log.info("Method stats after invocation: " + methodStats);