Catel.Test.Caching.CacheStorageFacts.TheRemoveMethod.RemovesNonExistingValue C# (CSharp) Method

RemovesNonExistingValue() private method

private RemovesNonExistingValue ( ) : void
return void
            public void RemovesNonExistingValue()
            {
                var cache = new CacheStorage<string, int>();
                cache.Remove("1");
            }