C# Класс NUnit.Framework.Constraints.BinarySerializableConstraint

BinarySerializableConstraint tests whether an object is serializable in binary format.
Наследование: NUnit.Framework.Constraints.Constraint
Показать файл Открыть проект Примеры использования класса

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

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

Test whether the constraint is satisfied by a given value

ToString ( ) : string

Returns the string representation

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

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

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

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

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

Returns the string representation
public ToString ( ) : string
Результат string

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