use of com.thoughtworks.go.server.service.SecurityAuthConfigService in project gocd by gocd.
the class AuthorizationControllerTest method setUp.
@Before
public void setUp() throws Exception {
localizer = mock(Localizer.class);
securityAuthConfigService = mock(SecurityAuthConfigService.class);
authorizationController = new AuthorizationController(localizer, securityAuthConfigService);
response = new MockHttpServletResponse();
}
Aggregations