public void Returns_True_If_AppSetting_Is_Not_A_Valid_Integer()
            {
                var hystrixCommandIdentifier    = new HystrixCommandIdentifier("GroupC", "DependencyZ");
                var hystrixConfigurationService = new HystrixWebConfigConfigurationService(hystrixCommandIdentifier);

                // act
                bool value = hystrixConfigurationService.GetMetricsRollingPercentileEnabled();

                Assert.True(value);
            }
            public void Returns_True_If_AppSetting_Does_Not_Exist()
            {
                var hystrixCommandIdentifier    = new HystrixCommandIdentifier("NonExistingGroup", "NonExistingCommand");
                var hystrixConfigurationService = new HystrixWebConfigConfigurationService(hystrixCommandIdentifier);

                // act
                bool value = hystrixConfigurationService.GetMetricsRollingPercentileEnabled();

                Assert.True(value);
            }
            public void Returns_MetricsRollingPercentileEnabled_AppSetting_As_Boolean_For_GroupB_And_DependencyY()
            {
                var hystrixCommandIdentifier    = new HystrixCommandIdentifier("GroupB", "DependencyY");
                var hystrixConfigurationService = new HystrixWebConfigConfigurationService(hystrixCommandIdentifier);

                // act
                bool value = hystrixConfigurationService.GetMetricsRollingPercentileEnabled();

                Assert.False(value);
            }