27282930313233343536373839
extraContext.put("attr", attrMap); } public void testGetUserName() { try { HelloAction action = execute(); String userName = action.getUserName(); assertEquals(userName, "����1"); } catch (Throwable e) { e.printStackTrace(); } }
38394041424344454647484950
} } public void testGetNow() { try { HelloAction action = execute(); Date now = action.getNow(); System.out.println(now); assertNotNull(now); } catch (Throwable e) { e.printStackTrace();