*/
@Test public void testRedirectionAfterLogin() throws Exception {
// Create mocks
final HttpServletRequest request = createMock(HttpServletRequest.class);
final HttpServletResponse response = createMock(HttpServletResponse.class);
final AuthenticationInfo authenticationInfo = createMock(AuthenticationInfo.class);
// Use PowerMock to mock private method
final String methodName = "refreshAuthData";
final FormAuthenticationHandler authenticationHandler = PowerMock.createPartialMock(FormAuthenticationHandler.class,
methodName);