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