Пример #1
0
            public void Returns_500_If_AppSetting_Does_Not_Exist()
            {
                var hystrixCommandIdentifier    = new HystrixCommandIdentifier("NonExistingGroup", "NonExistingCommand");
                var hystrixConfigurationService = new HystrixLocalConfigurationService(hystrixCommandIdentifier, options);

                // Act
                int value = hystrixConfigurationService.GetMetricsHealthSnapshotIntervalInMilliseconds();

                Assert.Equal(500, value);
            }
Пример #2
0
            public void Returns_MetricsHealthSnapshotIntervalInMilliseconds_AppSetting_As_Integer_For_GroupA_And_DependencyX()
            {
                var hystrixCommandIdentifier    = new HystrixCommandIdentifier("GroupA", "DependencyX");
                var hystrixConfigurationService = new HystrixLocalConfigurationService(hystrixCommandIdentifier, options);

                // Act
                int value = hystrixConfigurationService.GetMetricsHealthSnapshotIntervalInMilliseconds();

                Assert.Equal(3000, value);
            }