|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit.Sdk;
namespace Microsoft.NET.TestFramework;
/// <summary>
/// This is an abstraction so we can pass <see cref="ITestOutputHelper"/> to <see cref="TestCommand"/> constructor.
/// when calling from class fixture.
/// </summary>
public class SharedTestOutputHelper : ITestOutputHelper
{
private readonly IMessageSink _sink;
public SharedTestOutputHelper(IMessageSink sink)
{
_sink = sink;
}
public void WriteLine(string message)
{
_sink.OnMessage(new DiagnosticMessage(message));
}
public void WriteLine(string format, params object[] args)
{
_sink.OnMessage(new DiagnosticMessage(format, args));
}
}
|