PHP Класс PHPUnit_Framework_Constraint_IsEqual, qcodo

Equality is checked with PHP's == operator, the operator is explained in detail at {@url http://www.php.net/manual/en/types.comparisons.php}. Two values are equal if they have the same value disregarding type. The expected value is passed in the constructor.
Наследование: extends PHPUnit_Framework_Constraint
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$canonicalize boolean
$delta float
$ignoreCase boolean
$maxDepth integer
$value mixed

Открытые методы

Метод Описание
__construct ( mixed $value, float $delta, integer $maxDepth = 10, boolean $canonicalize = FALSE, boolean $ignoreCase = FALSE )
evaluate ( mixed $other ) : boolean Evaluates the constraint for parameter $other. Returns TRUE if the constraint is met, FALSE otherwise.
fail ( mixed $other, string $description, boolean $not = FALSE )
toString ( ) : string Returns a string representation of the constraint.

Защищенные методы

Метод Описание
domToText ( DOMDocument $document ) : string Returns the normalized, whitespace-cleaned, and indented textual representation of a DOMDocument.
numericComparison ( mixed $a, mixed $b ) : boolean Compares two numeric values - use delta if applicable.
recursiveComparison ( mixed $a, mixed $b, integer $depth ) : boolean Perform the actual recursive comparison of two values

Описание методов

__construct() публичный Метод

public __construct ( mixed $value, float $delta, integer $maxDepth = 10, boolean $canonicalize = FALSE, boolean $ignoreCase = FALSE )
$value mixed
$delta float
$maxDepth integer
$canonicalize boolean
$ignoreCase boolean

domToText() защищенный Метод

Returns the normalized, whitespace-cleaned, and indented textual representation of a DOMDocument.
protected domToText ( DOMDocument $document ) : string
$document DOMDocument
Результат string

evaluate() публичный Метод

Evaluates the constraint for parameter $other. Returns TRUE if the constraint is met, FALSE otherwise.
public evaluate ( mixed $other ) : boolean
$other mixed Value or object to evaluate.
Результат boolean

fail() публичный Метод

public fail ( mixed $other, string $description, boolean $not = FALSE )
$other mixed The value passed to evaluate() which failed the constraint check.
$description string A string with extra description of what was going on while the evaluation failed.
$not boolean Flag to indicate negation.

numericComparison() защищенный Метод

Compares two numeric values - use delta if applicable.
protected numericComparison ( mixed $a, mixed $b ) : boolean
$a mixed
$b mixed
Результат boolean

recursiveComparison() защищенный Метод

Perform the actual recursive comparison of two values
protected recursiveComparison ( mixed $a, mixed $b, integer $depth ) : boolean
$a mixed First value
$b mixed Second value
$depth integer Depth
Результат boolean

toString() публичный Метод

Returns a string representation of the constraint.
public toString ( ) : string
Результат string

Описание свойств

$canonicalize защищенное свойство

protected bool $canonicalize
Результат boolean

$delta защищенное свойство

protected float $delta
Результат float

$ignoreCase защищенное свойство

protected bool $ignoreCase
Результат boolean

$maxDepth защищенное свойство

protected int $maxDepth
Результат integer

$value защищенное свойство

protected mixed $value
Результат mixed