using Microsoft.AspNetCore.Http; namespace eSuite.API.UnitTests.SingleSignOn.CookieManager; public class FakeRequestCookieCollection : Dictionary, IRequestCookieCollection { public new ICollection Keys => base.Keys; public new string? this[string key] { get => base[key]; set => base[key] = value!; } }