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

PropertyConstraint extracts a named property and uses its value as the actual value for a chained constraint.
Наследование: PrefixConstraint
Показать файл Открыть проект

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

Метод Описание
Matches ( object actual ) : bool

Test whether the constraint is satisfied by a given value

PropertyConstraint ( string name, Constraint baseConstraint ) : System

Initializes a new instance of the T:PropertyConstraint class.

WriteActualValueTo ( MessageWriter writer ) : void

Write the actual value for a failing constraint test to a MessageWriter. The default implementation simply writes the raw value of actual, leaving it to the writer to perform any formatting.

WriteDescriptionTo ( MessageWriter writer ) : void

Write the constraint description to a MessageWriter

Защищенные методы

Метод Описание
GetStringRepresentation ( ) : string

Returns the string representation of the constraint.

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

GetStringRepresentation() защищенный Метод

Returns the string representation of the constraint.
protected GetStringRepresentation ( ) : string
Результат string

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

Test whether the constraint is satisfied by a given value
public Matches ( object actual ) : bool
actual object The value to be tested
Результат bool

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

Initializes a new instance of the T:PropertyConstraint class.
public PropertyConstraint ( string name, Constraint baseConstraint ) : System
name string The name.
baseConstraint Constraint The constraint to apply to the property.
Результат System

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

Write the actual value for a failing constraint test to a MessageWriter. The default implementation simply writes the raw value of actual, leaving it to the writer to perform any formatting.
public WriteActualValueTo ( MessageWriter writer ) : void
writer MessageWriter The writer on which the actual value is displayed
Результат void

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

Write the constraint description to a MessageWriter
public WriteDescriptionTo ( MessageWriter writer ) : void
writer MessageWriter The writer on which the description is displayed
Результат void