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

NullEmptyStringConstraint tests whether a string is either null or empty.
Inheritance: Constraint
显示文件 Open project: Unity-Technologies/nunitv2

Public Methods

Method Description
Matches ( object actual ) : bool

Test whether the constraint is satisfied by a given value

NullOrEmptyStringConstraint ( ) : System

Constructs a new NullOrEmptyStringConstraint

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

NullOrEmptyStringConstraint() public method

Constructs a new NullOrEmptyStringConstraint
public NullOrEmptyStringConstraint ( ) : System
return System

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