1 type derived from SimpleTestOutputCache
Microsoft.AspNetCore.OutputCaching.Tests (1)
TestUtils.cs (1)
368internal class BufferTestOutputCache : SimpleTestOutputCache, IOutputCacheBufferStore
5 instantiations of SimpleTestOutputCache
Microsoft.AspNetCore.OutputCaching.Tests (5)
OutputCacheEntryFormatterTests.cs (1)
13public override ITestOutputCacheStore GetStore() => new SimpleTestOutputCache();
OutputCacheMiddlewareTests.cs (1)
20public override ITestOutputCacheStore GetStore() => new SimpleTestOutputCache();
TestUtils.cs (3)
203cache = new SimpleTestOutputCache(); 225serviceProvider.Setup(x => x.GetService(typeof(IOutputCacheStore))).Returns(cache ?? new SimpleTestOutputCache()); 245serviceProvider.Setup(x => x.GetService(typeof(IOutputCacheStore))).Returns(cache ?? new SimpleTestOutputCache());