assertEquals("Explicit Request Scope", "request", context.getValue("$request/request"));
assertEquals("Explicit Session Scope", "session", context.getValue("$session/session"));
assertEquals("Explicit Application Scope", "app", context.getValue("$application/app"));
// iterate through the elements of page context only (two elements expected, 'page' and the context)
Iterator it = context.iteratePointers("$page/*");
assertTrue("element not found", it.hasNext());
it.next();
it.next();
assertFalse("too many elements", it.hasNext());