ReflectionTestUtils.setField(userService, "authenticationService", mockAuthenticationService);
ReflectionTestUtils.setField(timelineService, "authenticationService", mockAuthenticationService);
ReflectionTestUtils.setField(statusUpdateService, "authenticationService", mockAuthenticationService);
this.timelineMockMvc = MockMvcBuilders.standaloneSetup(timelineController).build();
AccountController accountController = new AccountController();
ReflectionTestUtils.setField(accountController, "userService", userService);
ReflectionTestUtils.setField(accountController, "env", env);
ReflectionTestUtils.setField(accountController, "authenticationService", mockAuthenticationService);
this.accountMockMvc = MockMvcBuilders.standaloneSetup(accountController).build();