1 implementation of IThing
Microsoft.Extensions.Features.Tests (1)
Thing.cs (1)
6public class Thing : IThing
12 references to IThing
Microsoft.Extensions.Features.Tests (12)
FeatureCollectionExtensionsTests.cs (4)
17features.Set<IThing>(thing); 20var retrievedThing = features.GetRequiredFeature<IThing>(); 33features.Set<IThing>(thing);
FeatureCollectionTests.cs (8)
17interfaces[typeof(IThing)] = thing; 19var thing2 = interfaces[typeof(IThing)]; 29interfaces[typeof(IThing)] = thing; 31Assert.Equal(interfaces[typeof(IThing)], thing); 40interfaces[typeof(IThing)] = thing; 41Assert.Equal(interfaces[typeof(IThing)], thing); 43interfaces[typeof(IThing)] = null; 45var thing2 = interfaces[typeof(IThing)];