File: Logging\TestOutputLoggerFactory.cs
Web Access
Project: src\src\Razor\src\Razor\test\Microsoft.AspNetCore.Razor.Test.Common.Tooling\Microsoft.AspNetCore.Razor.Test.Common.Tooling.csproj (Microsoft.AspNetCore.Razor.Test.Common.Tooling)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.CodeAnalysis.Razor.Logging;
using Xunit.Abstractions;
 
namespace Microsoft.AspNetCore.Razor.Test.Common.Logging;
 
internal sealed class TestOutputLoggerFactory(ITestOutputHelper output)
    : AbstractLoggerFactory([new TestOutputLoggerProvider(output)])
{
}