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