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

BasicConstraint is the abstract base for constraints that perform a simple comparison to a constant value.
Наследование: Constraint
Показать файл Открыть проект

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

Метод Описание
BasicConstraint ( object expected, string description )

Initializes a new instance of the T:BasicConstraint class.

Matches ( object actual ) : bool

Test whether the constraint is satisfied by a given value

WriteDescriptionTo ( MessageWriter writer ) : void

Write the constraint description to a MessageWriter

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

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

Initializes a new instance of the T:BasicConstraint class.
public BasicConstraint ( object expected, string description )
expected object The expected.
description string The description.

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

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

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

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