1 type derived from TestService
Microsoft.AspNetCore.Mvc.FunctionalTests (1)
TestingInfrastructureTests.cs (1)
246private class OverridenService : TestService
1 instantiation of TestService
BasicWebSite (1)
StartupWithoutEndpointRouting.cs (1)
20services.AddSingleton(new TestService { Message = "true" });
3 references to TestService
BasicWebSite (2)
Controllers\TestingController.cs (2)
13public TestingController(TestService service) 18public TestService Service { get; }
Microsoft.AspNetCore.Mvc.FunctionalTests (1)
TestingInfrastructureTests.cs (1)
29builder.ConfigureTestServices(s => s.AddSingleton<TestService, OverridenService>());