C# Class PclUnit.Constraints.Pieces.AssignableToConstraint

AssignableToConstraint is used to test that an object can be assigned to a given Type.
Inheritance: TypeConstraint
Afficher le fichier Open project: jbtule/PclUnit

Méthodes publiques

Méthode Description
AssignableToConstraint ( Type type ) : System

Construct an AssignableToConstraint for the type provided

Matches ( object actual ) : bool

Test whether an object can be assigned to the specified type

WriteDescriptionTo ( MessageWriter writer ) : void

Write a description of this constraint to a MessageWriter

Method Details

AssignableToConstraint() public méthode

Construct an AssignableToConstraint for the type provided
public AssignableToConstraint ( Type type ) : System
type System.Type
Résultat System

Matches() public méthode

Test whether an object can be assigned to the specified type
public Matches ( object actual ) : bool
actual object The object to be tested
Résultat bool

WriteDescriptionTo() public méthode

Write a description of this constraint to a MessageWriter
public WriteDescriptionTo ( MessageWriter writer ) : void
writer MessageWriter The MessageWriter to use
Résultat void