use of net.nemerosa.ontrack.extension.api.support.TestConfigurationServiceImpl in project ontrack by nemerosa.
the class ConfigurationServiceTest method before.
@Before
public void before() {
configurationRepository = mock(ConfigurationRepository.class);
securityService = mock(SecurityService.class);
encryptionService = mock(EncryptionService.class);
eventPostService = mock(EventPostService.class);
eventFactory = mock(EventFactory.class);
OntrackConfigProperties ontrackConfigProperties = new OntrackConfigProperties();
configurationService = new TestConfigurationServiceImpl(configurationRepository, securityService, encryptionService, eventPostService, eventFactory, ontrackConfigProperties);
}
Aggregations