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

Tests whether a value is greater than the value supplied to its constructor
Inheritance: ComparisonConstraint
Mostrar archivo Open project: Unity-Technologies/nunitv2

Public Methods

Method Description
GreaterThanConstraint ( object expected ) : System

Initializes a new instance of the T:GreaterThanConstraint class.

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

Method Details

GreaterThanConstraint() public method

Initializes a new instance of the T:GreaterThanConstraint class.
public GreaterThanConstraint ( object expected ) : System
expected object The expected value.
return System

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

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