1 instantiation of AssemblyTestLog
Microsoft.AspNetCore.InternalTesting (1)
AssemblyTestLog.cs (1)
217
return new
AssemblyTestLog
(loggerFactory, logger, baseDirectory, assembly, serviceProvider);
7 references to AssemblyTestLog
Microsoft.AspNetCore.InternalTesting (7)
AssemblyTestLog.cs (4)
30
private static readonly Dictionary<Assembly,
AssemblyTestLog
> _logs = new();
184
internal static
AssemblyTestLog
Create(Assembly assembly, string baseDirectory)
220
public static
AssemblyTestLog
ForAssembly(Assembly assembly)
224
if (!_logs.TryGetValue(assembly, out
var
log))
AssemblyTestLogFixtureAttribute.cs (1)
8
public AssemblyTestLogFixtureAttribute() : base(typeof(
AssemblyTestLog
))
LoggedTest\LoggedTestBase.cs (2)
55
return
AssemblyTestLog
.ForAssembly(GetType().GetTypeInfo().Assembly).StartTestLog(TestOutputHelper, GetType().FullName, out loggerFactory, minLogLevel, testName);
72
_testLog =
AssemblyTestLog