1 instantiation of AssemblyTestLog
Microsoft.AspNetCore.InternalTesting (1)
AssemblyTestLog.cs (1)
217return new AssemblyTestLog(loggerFactory, logger, baseDirectory, assembly, serviceProvider);
42 references to AssemblyTestLog
IIS.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (2)
31var logging = AssemblyTestLog.ForAssembly(typeof(IISTestSiteFixture).Assembly);
IIS.LongTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (2)
31var logging = AssemblyTestLog.ForAssembly(typeof(IISTestSiteFixture).Assembly);
IIS.NewHandler.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (2)
31var logging = AssemblyTestLog.ForAssembly(typeof(IISTestSiteFixture).Assembly);
IIS.NewShim.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (2)
31var logging = AssemblyTestLog.ForAssembly(typeof(IISTestSiteFixture).Assembly);
IIS.ShadowCopy.Tests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (2)
31var logging = AssemblyTestLog.ForAssembly(typeof(IISTestSiteFixture).Assembly);
IISExpress.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (2)
31var logging = AssemblyTestLog.ForAssembly(typeof(IISTestSiteFixture).Assembly);
Microsoft.AspNetCore.InternalTesting (7)
AssemblyTestLog.cs (4)
30private static readonly Dictionary<Assembly, AssemblyTestLog> _logs = new(); 184internal static AssemblyTestLog Create(Assembly assembly, string baseDirectory) 220public static AssemblyTestLog ForAssembly(Assembly assembly) 224if (!_logs.TryGetValue(assembly, out var log))
AssemblyTestLogFixtureAttribute.cs (1)
8public AssemblyTestLogFixtureAttribute() : base(typeof(AssemblyTestLog))
LoggedTest\LoggedTestBase.cs (2)
55return AssemblyTestLog.ForAssembly(GetType().GetTypeInfo().Assembly).StartTestLog(TestOutputHelper, GetType().FullName, out loggerFactory, minLogLevel, testName); 72_testLog = AssemblyTestLog
Microsoft.AspNetCore.InternalTesting.Tests (19)
AssemblyTestLogTests.cs (19)
33AssemblyTestLog.ForAssembly(TestableAssembly.ThisAssembly), 34AssemblyTestLog.ForAssembly(TestableAssembly.ThisAssembly)); 43var assembly = TestableAssembly.Create(typeof(AssemblyTestLog), logDirectory: tempDir); 51using var testAssemblyLog = AssemblyTestLog.ForAssembly(assembly); 78using var assemblyLog = AssemblyTestLog.Create(TestableAssembly.ThisAssembly, baseDirectory: null); 104using var testAssemblyLog = AssemblyTestLog.Create( 126using (var testAssemblyLog = AssemblyTestLog.Create( 196using (var testAssemblyLog = AssemblyTestLog.Create( 242using (var testAssemblyLog = AssemblyTestLog.Create( 277using (var testAssemblyLog = AssemblyTestLog.Create( 319using (var testAssemblyLog = AssemblyTestLog.Create(
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (2)
RedisServerFixture.cs (2)
32var testLog = AssemblyTestLog.ForAssembly(typeof(RedisServerFixture<TStartup>).Assembly);
Microsoft.AspNetCore.SignalR.Tests.Utils (2)
src\Shared\SignalR\InProcessTestServer.cs (2)
80var testLog = AssemblyTestLog.ForAssembly(typeof(TStartup).Assembly);