Lggr
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
PHPUnit\Framework\Constraint\Constraint Class Reference
Inheritance diagram for PHPUnit\Framework\Constraint\Constraint:
Inheritance graph
[legend]
Collaboration diagram for PHPUnit\Framework\Constraint\Constraint:
Collaboration graph
[legend]

Public Member Functions

 evaluate ($other, $description='', $returnResult=false)
 
 count ()
 
- Public Member Functions inherited from PHPUnit\Framework\SelfDescribing
 toString ()
 

Protected Member Functions

 matches ($other)
 
 fail ($other, $description, ComparisonFailure $comparisonFailure=null)
 
 additionalFailureDescription ($other)
 
 failureDescription ($other)
 

Protected Attributes

 $exporter
 

Detailed Description

Abstract base class for constraints which can be applied to any value.

Member Function Documentation

◆ additionalFailureDescription()

PHPUnit\Framework\Constraint\Constraint::additionalFailureDescription (   $other)
protected

Return additional failure description where needed

The function can be overridden to provide additional failure information like a diff

Parameters
mixed$otherEvaluated value or object.
Returns
string

Reimplemented in PHPUnit\Framework\Constraint\StringMatchesFormatDescription.

◆ count()

PHPUnit\Framework\Constraint\Constraint::count ( )

◆ evaluate()

PHPUnit\Framework\Constraint\Constraint::evaluate (   $other,
  $description = '',
  $returnResult = false 
)

Evaluates the constraint for parameter $other

If $returnResult is set to false (the default), an exception is thrown in case of a failure. null is returned otherwise.

If $returnResult is true, the result of the evaluation is returned as a boolean value instead: true in case of success, false in case of a failure.

Parameters
mixed$otherValue or object to evaluate.
string$descriptionAdditional information about the test
bool$returnResultWhether to return a result or throw an exception
Returns
mixed
Exceptions
ExpectationFailedException

Reimplemented in PHPUnit\Framework\Constraint\LogicalNot, PHPUnit\Framework\Constraint\IsEqual, PHPUnit\Framework\Constraint\LogicalAnd, PHPUnit\Framework\Constraint\LogicalOr, PHPUnit\Framework\Constraint\LogicalXor, PHPUnit\Framework\Constraint\TraversableContainsOnly, PHPUnit\Framework\Constraint\IsIdentical, PHPUnit\Framework\Constraint\ArraySubset, PHPUnit\Framework\Constraint\Attribute, PHPUnit\Framework\Constraint\Composite, and PHPUnit\Framework\Constraint\IsAnything.

◆ fail()

PHPUnit\Framework\Constraint\Constraint::fail (   $other,
  $description,
ComparisonFailure  $comparisonFailure = null 
)
protected

Throws an exception for the given compared value and test description

Parameters
mixed$otherEvaluated value or object.
string$descriptionAdditional information about the test
ComparisonFailure$comparisonFailure
Exceptions
ExpectationFailedException

Reimplemented in PHPUnit\Framework\Constraint\JsonMatches.

◆ failureDescription()

PHPUnit\Framework\Constraint\Constraint::failureDescription (   $other)
protected

◆ matches()

PHPUnit\Framework\Constraint\Constraint::matches (   $other)
protected

Evaluates the constraint for parameter $other. Returns true if the constraint is met, false otherwise.

This method can be overridden to implement the evaluation algorithm.

Parameters
mixed$otherValue or object to evaluate.
Returns
bool

Reimplemented in PHPUnit\Framework\Constraint\IsType, PHPUnit\Framework\Constraint\TraversableContains, PHPUnit\Framework\Constraint\StringContains, PHPUnit\Framework\Constraint\Callback, PHPUnit\Framework\Constraint\JsonMatches, PHPUnit\Framework\Constraint\ArrayHasKey, PHPUnit\Framework\Constraint\IsInstanceOf, PHPUnit\Framework\Constraint\RegularExpression, PHPUnit\Framework\Constraint\ClassHasAttribute, PHPUnit\Framework\Constraint\Count, PHPUnit\Framework\Constraint\GreaterThan, PHPUnit\Framework\Constraint\LessThan, PHPUnit\Framework\Constraint\StringEndsWith, PHPUnit\Framework\Constraint\StringStartsWith, PHPUnit\Framework\Constraint\Exception, PHPUnit\Framework\Constraint\ExceptionMessageRegularExpression, PHPUnit\Framework\Constraint\ExceptionCode, PHPUnit\Framework\Constraint\ExceptionMessage, PHPUnit\Framework\Constraint\ClassHasStaticAttribute, PHPUnit\Framework\Constraint\ObjectHasAttribute, PHPUnit\Framework\Constraint\DirectoryExists, PHPUnit\Framework\Constraint\FileExists, PHPUnit\Framework\Constraint\IsEmpty, PHPUnit\Framework\Constraint\IsReadable, PHPUnit\Framework\Constraint\IsWritable, PHPUnit\Framework\Constraint\IsFalse, PHPUnit\Framework\Constraint\IsFinite, PHPUnit\Framework\Constraint\IsInfinite, PHPUnit\Framework\Constraint\IsJson, PHPUnit\Framework\Constraint\IsNan, PHPUnit\Framework\Constraint\IsNull, PHPUnit\Framework\Constraint\IsTrue, CountConstraint, NamedConstraint, FalsyConstraint, and TruthyConstraint.


The documentation for this class was generated from the following file: