Class SameAsConstraint
SameAsConstraint tests whether an object is identical to the object passed to its constructor
Inherited Members
Namespace: NUnit.Framework.Constraints
Assembly: nunit.framework.dll
Syntax
public class SameAsConstraint : Constraint, IConstraint, IResolveConstraint
Constructors
View SourceSameAsConstraint(object?)
Initializes a new instance of the SameAsConstraint class.
Declaration
public SameAsConstraint(object? expected)
Parameters
Type | Name | Description |
---|---|---|
object | expected | The expected object. |
Properties
View SourceDescription
The Description of what this constraint tests, for use in messages and in the ConstraintResult.
Declaration
public override string Description { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
View SourceApplyTo<TActual>(TActual)
Test whether the constraint is satisfied by a given value
Declaration
public override ConstraintResult ApplyTo<TActual>(TActual actual)
Parameters
Type | Name | Description |
---|---|---|
TActual | actual | The value to be tested |
Returns
Type | Description |
---|---|
ConstraintResult | True for success, false for failure |
Type Parameters
Name | Description |
---|---|
TActual |