15 references to TestDashboardClient
Aspire.Dashboard.Components.Tests (15)
Pages\ConsoleLogsTests.cs (8)
51var dashboardClient = new TestDashboardClient( 135var dashboardClient = new TestDashboardClient( 182var dashboardClient = new TestDashboardClient( 239var dashboardClient = new TestDashboardClient( 299var dashboardClient = new TestDashboardClient( 364var dashboardClient = new TestDashboardClient( 423var dashboardClient = new TestDashboardClient( 573Services.AddSingleton<IDashboardClient>(dashboardClient ?? new TestDashboardClient());
Pages\LoginTests.cs (1)
66Services.AddSingleton<IDashboardClient>(new TestDashboardClient());
Pages\ResourcesTests.cs (5)
37var dashboardClient = new TestDashboardClient(isEnabled: true, initialResources: initialResources, resourceChannelProvider: () => channel); 135var dashboardClient = new TestDashboardClient(isEnabled: true, initialResources: initialResources, resourceChannelProvider: Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>); 187var dashboardClient = new TestDashboardClient(isEnabled: true, initialResources: initialResources, resourceChannelProvider: Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>); 222var dashboardClient = new TestDashboardClient(isEnabled: true, initialResources: initialResources, 319var dashboardClient = new TestDashboardClient(isEnabled: true, initialResources: initialResources, resourceChannelProvider: () => channel);
Shared\ResourceSetupHelpers.cs (1)
116context.Services.AddSingleton<IDashboardClient>(dashboardClient ?? new TestDashboardClient(isEnabled: true, initialResources: [], resourceChannelProvider: Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>));