C# Class NUnit.Framework.Constraints.PropertyConstraint

Summary description for PropertyConstraint.
Inheritance: NUnit.Framework.Constraints.Constraint
Mostra file Open project: mono/NUnitLite Class Usage Examples

Public Methods

Method Description
Matches ( object actual ) : bool

Test whether the constraint is satisfied by a given value

PropertyConstraint ( string name, NUnit.Framework.Constraints.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

Protected Methods

Method Description
GetStringRepresentation ( ) : string

Returns the string representation of the constraint.

Method Details

GetStringRepresentation() protected method

Returns the string representation of the constraint.
protected GetStringRepresentation ( ) : string
return string

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

PropertyConstraint() public method

Initializes a new instance of the T:PropertyConstraint class.
public PropertyConstraint ( string name, NUnit.Framework.Constraints.Constraint baseConstraint ) : System
name string The name.
baseConstraint NUnit.Framework.Constraints.Constraint The constraint to apply to the property.
return System

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