AWSSDK.UnitTests.LruCacheTest.AssertNotInCache C# (CSharp) Метод

AssertNotInCache() приватный Метод

private AssertNotInCache ( string>.LruCache cache, string key ) : void
cache string>.LruCache
key string
Результат void
        private void AssertNotInCache(LruCache<string, string> cache, string key)
        {
            string value = null;
            Assert.IsFalse(cache.TryGetValue(key, out value));
            Assert.IsNull(value);
        }