C# Class PclUnit.Constraints.Pieces.StringConstraint

StringConstraint is the abstract base for constraints that operate on strings. It supports the IgnoreCase modifier for string operations.
Inheritance: Constraint
Afficher le fichier Open project: jbtule/PclUnit

Protected Properties

Свойство Type Description
caseInsensitive bool
expected string

Méthodes publiques

Méthode Description
StringConstraint ( string expected ) : System

Constructs a StringConstraint given an expected value

Method Details

StringConstraint() public méthode

Constructs a StringConstraint given an expected value
public StringConstraint ( string expected ) : System
expected string The expected value
Résultat System

Property Details

caseInsensitive protected_oe property

Indicates whether tests should be case-insensitive
protected bool caseInsensitive
Résultat bool

expected protected_oe property

The expected value
protected string expected
Résultat string