Class EqualNumericConstraint<T>
EqualNumericConstraint 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 EqualNumericConstraint<T> : EqualNumericWithoutUsingConstraint<T>, IConstraint, IResolveConstraint, IEqualWithUsingConstraint<T> where T : struct
Type Parameters
Name | Description |
---|---|
T |
Constructors
View SourceEqualNumericConstraint(T)
Initializes a new instance of the EqualConstraint class.
Declaration
public EqualNumericConstraint(T expected)
Parameters
Type | Name | Description |
---|---|---|
T | expected | The expected value. |
Remarks
Marked internal to prevent external instantiation with non-supported types.