Andover.Domain.Tests.Components.Cache.CacheDeltasTests.IsCompliant_ReturnsTrue C# (CSharp) Method

IsCompliant_ReturnsTrue() private method

private IsCompliant_ReturnsTrue ( ) : void
return void
        public void IsCompliant_ReturnsTrue()
        {
            //var inputs = new List<CacheData>()
            //	{
            //		new CacheData() {MaxSize = 100, RemainingSpace = 5, Size = 95},
            //		new CacheData() {MaxSize = 100, RemainingSpace = 50, Size = 50},
            //		new CacheData() {MaxSize = 50, RemainingSpace = 35, Size = 15}
            //	};

            //const int deltaThresholdPercentage = 80;
            //var cacheDeltas = new TestableCacheDeltasComponent(inputs);
            //bool isCompliant = cacheDeltas.IsCompliant;

            //Assert.IsFalse(isCompliant);
        }
CacheDeltasTests