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 string FullName => context.Test.FullName; public TextWriter Out => writer; }