Catel.Test.Caching.CacheStorageFacts.TheAddMethod.AddsNonExistingValue C# (CSharp) Méthode

AddsNonExistingValue() private méthode

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

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