NUnit.Framework.Interfaces.AssertionResult
The AssertionResult class represents the result of a single assertion.
namespace NUnit.Framework.Interfaces
{
public class AssertionResult : IEquatable<AssertionResult>
{
public AssertionStatus Status { get; }
public string Message { get; }
public string StackTrace { get; }
public AssertionResult(AssertionStatus status, string message, string stackTrace);
public bool Equals(AssertionResult other);
}
}