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