private Validation validation;
@Before
public void setUp() throws Exception {
validation = new ValidationImpl();
when(context.getSessionCookie()).thenReturn(session);
when(context.getFlashCookie()).thenReturn(flash);
when(context.getValidation()).thenReturn(validation);
}