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