mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
13 lines
347 B
C#
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;
|
|
}
|