Files
RobustToolbox/Robust.UnitTesting/Pool/ITestContextLike.cs
2025-07-11 20:55:49 +02:00

15 lines
295 B
C#

using System.IO;
using NUnit.Framework;
namespace Robust.UnitTesting.Pool;
/// <summary>
/// Something that looks like a <see cref="TestContext"/>, for passing to integration tests.
/// </summary>
public interface ITestContextLike
{
string FullName { get; }
TextWriter Out { get; }
}