Exemplo n.º 1
0
 @Test
 public void HandlerMethodインスタンスにSessionAttributeComplete注釈がついていないことを判定() throws Exception {
   HandlerMethod handler =
       new HandlerMethod(
           new ControllersTestController(), ControllersTestController.class.getMethod("test"));
   assertThat(Controllers.isSessionAttributeComplete(handler.getMethod()), is(false));
 }