TimerSessionHome home = (TimerSessionHome)iniCtx.lookup(TimerSessionHome.JNDI_NAME);
TimerSession session = home.create();
session.resetCallCount();
// create a timer to expire in 2sec, with a SimpleInfo serializable
session.createTimer(2000, 0, new SimpleInfo("ScopedTest"));
// the timer shouldn't have expired yet
assertEquals("unexpected call count", 0, session.getGlobalCallCount());
// undeploy, the timer must have been persisted