C# Class PclUnit.Constraints.Pieces.ThrowsNothingConstraint

ThrowsNothingConstraint tests that a delegate does not throw an exception.
Inheritance: Constraint
Mostrar archivo Open project: jbtule/PclUnit

Public Methods

Method Description
Matches ( ActualValueDelegate del ) : bool

Converts an ActualValueDelegate to a TestDelegate before calling the primary overload.

Matches ( object actual ) : bool

Test whether the constraint is satisfied by a given value

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

Method Details

Matches() public method

Converts an ActualValueDelegate to a TestDelegate before calling the primary overload.
public Matches ( ActualValueDelegate del ) : bool
del ActualValueDelegate
return bool

Matches() public method

Test whether the constraint is satisfied by a given value
public Matches ( object actual ) : bool
actual object The value to be tested
return bool

WriteActualValueTo() public method

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
return void

WriteDescriptionTo() public method

Write the constraint description to a MessageWriter
public WriteDescriptionTo ( MessageWriter writer ) : void
writer MessageWriter The writer on which the description is displayed
return void