C# Class NUnit.Framework.Constraints.RegexConstraint

RegexConstraint can test whether a string matches the pattern provided.
Inheritance: NUnit.Framework.Constraints.StringConstraint
Afficher le fichier Open project: pjcollins/Andr.Unit Class Usage Examples

Méthodes publiques

Méthode Description
RegexConstraint ( string pattern ) : System.Text.RegularExpressions

Initializes a new instance of the T:RegexConstraint class.

WriteDescriptionTo ( MessageWriter writer ) : void

Write the constraint description to a MessageWriter

Méthodes protégées

Méthode Description
Matches ( string actual ) : bool

Test whether the constraint is satisfied by a given value

Method Details

Matches() protected méthode

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

RegexConstraint() public méthode

Initializes a new instance of the T:RegexConstraint class.
public RegexConstraint ( string pattern ) : System.Text.RegularExpressions
pattern string The pattern.
Résultat System.Text.RegularExpressions

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