NUnit.Framework.Constraints.EqualStringWithoutUsingConstraint
EqualConstraint is able to compare an actual value with the
expected value provided in its constructor. Two objects are
considered equal if both are null, or if both have the same
value. NUnit has special semantics for some object types.
namespace NUnit.Framework.Constraints
{
public class EqualStringWithoutUsingConstraint : Constraint
{
public string Expected { get; }
public EqualStringWithoutUsingConstraint IgnoreCase { get; }
public EqualStringWithoutUsingConstraint IgnoreWhiteSpace { get; }
public EqualStringWithoutUsingConstraint IgnoreLineEndingFormat { get; }
public EqualStringWithoutUsingConstraint NoClip { get; }
public EqualStringWithoutUsingConstraint(string expected);
public ConstraintResult ApplyTo(string actual);
}
}