C# Класс PclUnit.Constraints.Pieces.StringConstraint

StringConstraint is the abstract base for constraints that operate on strings. It supports the IgnoreCase modifier for string operations.
Наследование: Constraint
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
caseInsensitive bool
expected string

Открытые методы

Метод Описание
StringConstraint ( string expected ) : System

Constructs a StringConstraint given an expected value

Описание методов

StringConstraint() публичный Метод

Constructs a StringConstraint given an expected value
public StringConstraint ( string expected ) : System
expected string The expected value
Результат System

Описание свойств

caseInsensitive защищенное свойство

Indicates whether tests should be case-insensitive
protected bool caseInsensitive
Результат bool

expected защищенное свойство

The expected value
protected string expected
Результат string