Пример #1
0
        public HealthMonitoringProcessorTests()
        {
            appRegistryService   = A.Fake <IAppRegistryService>();
            healthCheckerService = A.Fake <IHealthCheckerService>();
            logger = A.Fake <ILogger <HealthMonitoringProcessor> >();

            healthMonitoringProcessor = new HealthMonitoringProcessor(appRegistryService, healthCheckerService, logger);
        }
 public HealthMonitoringProcessor(
     IAppRegistryService appRegistryService,
     IHealthCheckerService healthCheckerService,
     ILogger <HealthMonitoringProcessor> logger)
 {
     this.appRegistryService   = appRegistryService;
     this.healthCheckerService = healthCheckerService;
     this.logger = logger;
 }