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