TestAttachment
The TestAttachment class represents a file attached to a TestResult,
with an optional description.
using System.Runtime.CompilerServices;
namespace NUnit.Framework.Interfaces
{
[NullableContext(1)]
[Nullable(0)]
public class TestAttachment
{
public string FilePath { get; }
[Nullable(2)]
[field: Nullable(2)]
public string Description {
[NullableContext(2)]
get;
}
public TestAttachment(string filePath, [Nullable(2)] string description)
{
FilePath = filePath;
Description = description;
}
}
}