Catel.Test.Caching.CacheStorageFacts.TheAddMethod.AddsNonExistingValue C# (CSharp) Method

AddsNonExistingValue() private method

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

                Assert.AreEqual(1, cache["1"]);
            }