expect(sf.getSession(true)).andReturn(session);
expect(sf.getSession(true)).andReturn(session);
replay();
session1.invalidate();
Session session2 = request.getSession(true);
assertNotSame(session2, session1);
assertSame(request.getSession(true), session2);