C# Class PclUnit.Constraints.Pieces.SameAsConstraint

SameAsConstraint tests whether an object is identical to the object passed to its constructor
Inheritance: Constraint
Exibir arquivo Open project: jbtule/PclUnit

Public Methods

Method Description
Matches ( object actual ) : bool

Test whether the constraint is satisfied by a given value

SameAsConstraint ( object expected ) : System

Initializes a new instance of the T:SameAsConstraint class.

WriteDescriptionTo ( MessageWriter writer ) : void

Write the constraint description to a MessageWriter

Method Details

Matches() public method

Test whether the constraint is satisfied by a given value
public Matches ( object actual ) : bool
actual object The value to be tested
return bool

SameAsConstraint() public method

Initializes a new instance of the T:SameAsConstraint class.
public SameAsConstraint ( object expected ) : System
expected object The expected object.
return System

WriteDescriptionTo() public method

Write the constraint description to a MessageWriter
public WriteDescriptionTo ( MessageWriter writer ) : void
writer MessageWriter The writer on which the description is displayed
return void