C# Class PclUnit.Constraints.Pieces.LessThanConstraint

Tests whether a value is less than the value supplied to its constructor
Inheritance: ComparisonConstraint
Afficher le fichier Open project: jbtule/PclUnit

Méthodes publiques

Méthode Description
LessThanConstraint ( object expected ) : System

Initializes a new instance of the T:LessThanConstraint class.

Matches ( object actual ) : bool

Test whether the constraint is satisfied by a given value

WriteDescriptionTo ( MessageWriter writer ) : void

Write the constraint description to a MessageWriter

Method Details

LessThanConstraint() public méthode

Initializes a new instance of the T:LessThanConstraint class.
public LessThanConstraint ( object expected ) : System
expected object The expected value.
Résultat System

Matches() public méthode

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

WriteDescriptionTo() public méthode

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