C# Class PclUnit.Constraints.Pieces.SubstringConstraint

SubstringConstraint can test whether a string contains the expected substring.
Inheritance: StringConstraint
Afficher le fichier Open project: jbtule/PclUnit

Méthodes publiques

Méthode Description
Matches ( object actual ) : bool

Test whether the constraint is satisfied by a given value

SubstringConstraint ( string expected ) : System

Initializes a new instance of the T:SubstringConstraint class.

WriteDescriptionTo ( MessageWriter writer ) : void

Write the constraint description to a MessageWriter

Method Details

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

SubstringConstraint() public méthode

Initializes a new instance of the T:SubstringConstraint class.
public SubstringConstraint ( string expected ) : System
expected string The expected.
Résultat System

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