NUnit.Framework.Interfaces.TestAttachment
namespace NUnit.Framework.Interfaces
{
public class TestAttachment
{
public string FilePath { get; }
public string Description { get; }
public TestAttachment(string filePath, string description);
}
}
namespace NUnit.Framework.Interfaces
{
public interface IRepeatTest : ICommandWrapper
{
}
}