// check that there are no timers persisted
List timerHandles = pp.listTimerHandles();
assertEquals("unexpected handle count", 0, timerHandles.size());
InitialContext iniCtx = getInitialContext();
TimerSessionHome home = (TimerSessionHome)iniCtx.lookup(TimerSessionHome.JNDI_NAME);
TimerSession session = home.create();
session.resetCallCount();
try
{
// insert a timer into the db
ObjectName oname = ObjectNameFactory.create("jboss.j2ee:jndiName=test/txtimer/TimerSession,service=EJB");