mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
15 lines
295 B
C#
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; }
|
|
}
|
|
|