14 lines
273 B
C#
14 lines
273 B
C#
|
|
using System.IO;
|
||
|
|
|
||
|
|
namespace Content.IntegrationTests;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Something that looks like a <see cref="TestContext"/>, for passing to integration tests.
|
||
|
|
/// </summary>
|
||
|
|
public interface ITestContextLike
|
||
|
|
{
|
||
|
|
string FullName { get; }
|
||
|
|
TextWriter Out { get; }
|
||
|
|
}
|
||
|
|
|