Implemented interface member:
property
Writes
Microsoft.Extensions.Logging.Testing.ITestSink.Writes
13 references to Writes
Aspire.Dashboard.Tests (13)
Integration\FrontendBrowserTokenAuthTests.cs (4)
101
var log = testSink.
Writes
.Single(s => s.LoggerName == typeof(FrontendCompositeAuthenticationHandler).FullName && s.EventId.Name == "AuthenticationSchemeNotAuthenticatedWithFailure");
171
var l = testSink.
Writes
.Where(w => w.LoggerName == typeof(DashboardWebApplication).FullName).ToList();
232
var l = testSink.
Writes
.Where(w => w.LoggerName == typeof(DashboardWebApplication).FullName).ToList();
259
var l = testSink.
Writes
.Where(w => w.LoggerName == typeof(DashboardWebApplication).FullName).ToList();
Integration\FrontendOpenIdConnectAuthTests.cs (1)
90
var log = testSink.
Writes
.Single(s => s.LoggerName == typeof(FrontendCompositeAuthenticationHandler).FullName && s.EventId.Name == "AuthenticationSchemeNotAuthenticatedWithFailure");
Integration\StartupTests.cs (3)
341
Assert.Contains(testSink.
Writes
, w =>
559
var l = testSink.
Writes
.Where(w => w.LoggerName == typeof(DashboardWebApplication).FullName).ToList();
639
var l = testSink.
Writes
.Where(w => w.LoggerName == typeof(DashboardWebApplication).FullName).ToList();
Model\ApplicationsSelectHelpersTests.cs (2)
103
Assert.Empty(testSink.
Writes
);
127
Assert.Single(testSink.
Writes
);
TelemetryRepositoryTests\OtlpHelpersTests.cs (2)
438
var w = Assert.Single(testSink.
Writes
);
491
var w = Assert.Single(testSink.
Writes
);
TelemetryRepositoryTests\TraceTests.cs (1)
146
var write = Assert.Single(testSink.
Writes
);