1 instantiation of AssemblyTestLog
Microsoft.AspNetCore.InternalTesting (1)
AssemblyTestLog.cs (1)
217return new AssemblyTestLog(loggerFactory, logger, baseDirectory, assembly, serviceProvider);
7 references to AssemblyTestLog
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