4 instantiations of TestHostedService
Microsoft.AspNetCore.Components.WebAssembly.Tests (4)
Hosting\WebAssemblyHostTest.cs (4)
94var testHostedService = new TestHostedService(); 122var testHostedService1 = new TestHostedService(); 123var testHostedService2 = new TestHostedService(); 155var goodService = new TestHostedService();
8 references to TestHostedService
Microsoft.AspNetCore.Components.WebAssembly.Tests (8)
Hosting\WebAssemblyHostTest.cs (8)
94var testHostedService = new TestHostedService(); 122var testHostedService1 = new TestHostedService(); 123var testHostedService2 = new TestHostedService(); 155var goodService = new TestHostedService(); 188builder.Services.AddSingleton<TestHostedService>(); 189builder.Services.AddSingleton<IHostedService>(serviceProvider => serviceProvider.GetRequiredService<TestHostedService>()); 209Assert.IsType<TestHostedService>(testService); 210Assert.True(((TestHostedService)testService).StartCalled);