2 instantiations of InMemoryStore
Microsoft.AspNetCore.Identity.InMemory.Test (2)
FunctionalTest.cs (1)
391var store = new InMemoryStore<PocoUser, PocoRole>();
InMemoryStoreTest.cs (1)
15return new InMemoryStore<PocoUser, PocoRole>();
7 references to InMemoryStore
Microsoft.AspNetCore.Identity.InMemory.Test (7)
ControllerTest.cs (4)
37services.AddSingleton<IUserStore<PocoUser>, InMemoryStore<PocoUser, PocoRole>>(); 38services.AddSingleton<IRoleStore<PocoRole>, InMemoryStore<PocoUser, PocoRole>>(); 88services.AddSingleton<IUserStore<PocoUser>, InMemoryStore<PocoUser, PocoRole>>(); 89services.AddSingleton<IRoleStore<PocoRole>, InMemoryStore<PocoUser, PocoRole>>();
FunctionalTest.cs (1)
391var store = new InMemoryStore<PocoUser, PocoRole>();
InMemoryStoreTest.cs (2)
20services.AddSingleton<IUserStore<PocoUser>>((InMemoryStore<PocoUser, PocoRole>)context); 25services.AddSingleton<IRoleStore<PocoRole>>((InMemoryStore<PocoUser, PocoRole>)context);