/**
* @throws java.lang.Exception
*/
@Before
public void setUp() throws Exception {
activationController = new OpenIdActivationController();
request = mock(HttpServletRequest.class);
session = mock(HttpSession.class);
when(request.getSession()).thenReturn(session);
redirectStrategy = mock(DefaultRedirectStrategy.class);