using System.IO; namespace Content.IntegrationTests; /// /// 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; }