*/
public class AcegiWorkflowContextHandlerInterceptorTests extends AbstractWorkflowContextHandlerInterceptorTests {
protected MockHttpServletRequest getMockRequest(String userName) {
User user = new User(userName, "dummy", true, true, true, true, new GrantedAuthority[]{});
Authentication auth = new UsernamePasswordAuthenticationToken(user, null);
SecurityContext context = new SecurityContextImpl();
context.setAuthentication(auth);
SecurityContextHolder.setContext(context);