using System.IO; using NUnit.Framework; namespace Robust.UnitTesting.Pool; /// /// Canonical implementation of for usage in actual NUnit tests. /// public sealed class NUnitTestContextWrap(TestContext context, TextWriter writer) : ITestContextLike { public readonly TestContext Context = context; public string FullName => Context.Test.FullName; public TextWriter Out => writer; }