public void testGet() throws Exception {
FacesContext facesContext = getFacesContext();
System.out.println("Testing getValue() with model bean in context");
assertTrue(facesContext != null);
TestBean testBeanResult = null, testBean = new TestBean();
InnerBean inner = new InnerBean();
Inner2Bean inner2 = new Inner2Bean();
String result;
// Init the beans
testBean.setOne("one");
inner.setTwo("two");
inner2.setThree("three");
inner.setInner2(inner2);
testBean.setInner(inner);
assertTrue(facesContext != null);
assertTrue(facesContext.getExternalContext().getSession(false) != null);
facesContext.getExternalContext().getRequestMap().remove("TestBean");