IEqualWithUsingConstraint<T>
Interface for equal constraints which support user comparisons.
using NUnit.Framework.Constraints;
using System.Runtime.CompilerServices;
namespace NUnit.Framework
{
[System.Runtime.CompilerServices.NullableContext(2)]
public interface IEqualWithUsingConstraint<T>
{
[System.Runtime.CompilerServices.Nullable(1)]
T Expected {
[System.Runtime.CompilerServices.NullableContext(1)]
get;
}
ConstraintBuilder Builder { get; set; }
}
}