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

NotConstraint negates the effect of some other constraint
Inheritance: PrefixConstraint
显示文件 Open project: Unity-Technologies/nunitv2

Public Methods

Method Description
Matches ( object actual ) : bool

Test whether the constraint is satisfied by a given value

NotConstraint ( Constraint baseConstraint )

Initializes a new instance of the NotConstraint class.

WriteActualValueTo ( MessageWriter writer ) : void

Write the actual value for a failing constraint test to a MessageWriter.

WriteDescriptionTo ( MessageWriter writer ) : void

Write the constraint description to a MessageWriter

Method Details

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

NotConstraint() public method

Initializes a new instance of the NotConstraint class.
public NotConstraint ( Constraint baseConstraint )
baseConstraint Constraint The base constraint to be negated.

WriteActualValueTo() public method

Write the actual value for a failing constraint test to a MessageWriter.
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