request = new MockHttpServletRequest();
request.setAttribute("a","b");
request.setAttribute("a.b","b");
request.setAttribute("a.b.c","b");
input = new StandardServletInputData(request);
input.pushScope("a");input.pushScope("b");input.pushScope("c");input.pushScope("d");
assertEquals(null ,input.getScopedData().get("c"));
}