38394041424344454647484950
session.getAttributeNames(); control.setReturnValue(newEnumeration()); replayControls(); WebSession ws = new ServletWebSession(session); List l = ws.getAttributeNames(); checkList(l); verifyControls(); }
5960616263646566676869
session.getAttribute("attr"); control.setReturnValue(attribute); replayControls(); WebSession ws = new ServletWebSession(session); assertSame(attribute, ws.getAttribute("attr")); verifyControls(); }
7778798081828384858687
session.setAttribute("name", attribute); replayControls(); WebSession ws = new ServletWebSession(session); ws.setAttribute("name", attribute); verifyControls(); }
93949596979899100101102103
session.removeAttribute("tonull"); replayControls(); WebSession ws = new ServletWebSession(session); ws.setAttribute("tonull", null); verifyControls(); }
110111112113114115116117118119120
session.getId(); control.setReturnValue("abc"); replayControls(); WebSession ws = new ServletWebSession(session); assertEquals("abc", ws.getId()); verifyControls(); }
37383940414243444546474849
session.getAttributeNames(); setReturnValue(session, newEnumeration()); replayControls(); WebSession ws = new ServletWebSession(session); List l = ws.getAttributeNames(); checkList(l); verifyControls(); }
6263646566676869707172
session.getAttribute("attr"); setReturnValue(session, attribute); replayControls(); WebSession ws = new ServletWebSession(session); assertSame(attribute, ws.getAttribute("attr")); verifyControls(); }
7980818283848586878889
949596979899100101102103104
session.getId(); setReturnValue(session, "abc"); replayControls(); WebSession ws = new ServletWebSession(session); assertEquals("abc", ws.getId()); verifyControls(); }