13 lines
348 B
C#
13 lines
348 B
C#
|
|
using System.IO;
|
||
|
|
|
||
|
|
namespace Content.IntegrationTests;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Generic implementation of <see cref="ITestContextLike"/> for usage outside of actual tests.
|
||
|
|
/// </summary>
|
||
|
|
public sealed class ExternalTestContext(string name, TextWriter writer) : ITestContextLike
|
||
|
|
{
|
||
|
|
public string FullName => name;
|
||
|
|
public TextWriter Out => writer;
|
||
|
|
}
|