Class EqualStringConstraint
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.
Inherited Members
Namespace: NUnit.Framework.Constraints
Assembly: nunit.framework.dll
Syntax
public class EqualStringConstraint : EqualStringWithoutUsingConstraint, IConstraint, IResolveConstraint, IEqualWithUsingConstraint<string?>
Constructors
View SourceEqualStringConstraint(string?)
Initializes a new instance of the EqualConstraint class.
Declaration
public EqualStringConstraint(string? expected)
Parameters
Type | Name | Description |
---|---|---|
string | expected | The expected value. |
Methods
View SourceUsing(StringComparer)
Sets the StringComparer to be used in the comparison.
Declaration
public EqualUsingConstraint<string> Using(StringComparer comparer)
Parameters
Type | Name | Description |
---|---|---|
StringComparer | comparer | comparer to use for comparing strings. |
Returns
Type | Description |
---|---|
EqualUsingConstraint<string> | Equal constraint comparing Expected with an actual value using the user supplied comparer. |