1 instantiation of ServerStats
Microsoft.NET.Sdk.Razor.Tool.Tests (1)
Infrastructure\ServerUtilities.cs (1)
57var serverStats = new ServerStats(connections: eventBus.ConnectionCount, completedConnections: eventBus.CompletedCount);
7 references to ServerStats
Microsoft.NET.Sdk.Razor.Tool.Tests (7)
Infrastructure\ServerData.cs (4)
9internal Task<ServerStats> ServerTask { get; } 13internal ServerData(CancellationTokenSource cancellationTokenSource, string pipeName, Task<ServerStats> serverTask, Task listenTask) 21internal async Task<ServerStats> CancelAndCompleteAsync() 29var stats = await CancelAndCompleteAsync().ConfigureAwait(false);
Infrastructure\ServerUtilities.cs (2)
33var serverStatsSource = new TaskCompletionSource<ServerStats>(); 57var serverStats = new ServerStats(connections: eventBus.ConnectionCount, completedConnections: eventBus.CompletedCount);
ServerLifecycleTest.cs (1)
251var stats = await serverData.CancelAndCompleteAsync();