Files
RobustToolbox/Robust.UnitTesting/Pool/ExternalTestContext.cs
2025-07-11 20:55:49 +02:00

13 lines
347 B
C#

using System.IO;
namespace Robust.UnitTesting.Pool;
/// <summary>
/// Generic implementation of <see cref="ITestContextLike"/> for usage outside of actual tests.
/// </summary>
public sealed class ExternalTestContext(string name, TextWriter writer) : ITestContextLike
{
public string FullName => name;
public TextWriter Out => writer;
}