Ejemplo n.º 1
0
        public void Contains_ReturnsTrue_OnCachedTemplate()
        {
            var    cache       = new MemoryCachingProvider();
            string templateKey = "key";

            cache.CacheTemplate(templateKey, GetTestFactory(templateKey));

            Assert.True(cache.Contains(templateKey));
        }
Ejemplo n.º 2
0
        public void Contains_ReturnsFalse_OnNonCachedTemplate()
        {
            var cache = new MemoryCachingProvider();

            Assert.False(cache.Contains("someKey"));
        }