@Test
public void asMap() throws Exception {
tester.request.setAttribute("aaa", "aiueo");
tester.request.setAttribute("bbb", "12345");
RequestMap map = controller.asMap();
assertThat(map.keySet().size(), is(2));
assertThat((String)map.get("aaa"), is("aiueo"));
assertThat((String)map.get("bbb"), is("12345"));
}
/**