use of com.thoughtworks.go.server.service.TemplateConfigService in project gocd by gocd.
the class TemplateConfigServiceTest method setup.
@Before
public void setup() {
goConfigService = mock(GoConfigService.class);
securityService = mock(SecurityService.class);
entityHashingService = mock(EntityHashingService.class);
pluggableTaskService = mock(PluggableTaskService.class);
service = new TemplateConfigService(goConfigService, securityService, entityHashingService, pluggableTaskService);
}
Aggregations