use of com.icthh.xm.commons.config.client.repository.TenantConfigRepository in project xm-ms-entity by xm-online.
the class WebappTenantOverrideConfiguration method webappTenantConfigRepository.
@Bean
@Qualifier("webappTenantConfigRepository")
public TenantConfigRepository webappTenantConfigRepository() {
TenantConfigRepository repository = Mockito.mock(TenantConfigRepository.class);
Mockito.doNothing().when(repository).updateConfig(Mockito.anyString(), Mockito.anyString(), Mockito.anyString());
return repository;
}
Aggregations