C# Class UnityEngine.NUnit.Framework.Constraints.BasicConstraint

BasicConstraint is the abstract base for constraints that perform a simple comparison to a constant value.
Inheritance: Constraint
Afficher le fichier Open project: Unity-Technologies/nunitv2

Méthodes publiques

Méthode Description
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

Méthodes protégées

Méthode Description
BasicConstraint ( object expected, string description ) : System

Initializes a new instance of the T:BasicConstraint class.

Method Details

BasicConstraint() protected méthode

Initializes a new instance of the T:BasicConstraint class.
protected BasicConstraint ( object expected, string description ) : System
expected object The expected.
description string The description.
Résultat System

Matches() public méthode

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

WriteDescriptionTo() public méthode

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