Documentation

MockObjectComparator extends ObjectComparator
in package

Compares PHPUnit_Framework_MockObject_MockObject instances for equality.

Table of Contents

$exporter  : Exporter
$factory  : Factory
__construct()  : mixed
accepts()  : bool
Returns whether the comparator can compare two values.
assertEquals()  : mixed
Asserts that two values are equal.
setFactory()  : mixed
indent()  : mixed
toArray()  : array<string|int, mixed>
Converts an object to an array containing all of its private, protected and public properties.

Properties

Methods

__construct()

public __construct() : mixed
Return values
mixed

accepts()

Returns whether the comparator can compare two values.

public accepts(mixed $expected, mixed $actual) : bool
Parameters
$expected : mixed

The first value to compare

$actual : mixed

The second value to compare

Return values
bool

assertEquals()

Asserts that two values are equal.

public abstract assertEquals(mixed $expected, mixed $actual[, float $delta = 0.0 ][, bool $canonicalize = false ][, bool $ignoreCase = false ]) : mixed
Parameters
$expected : mixed

First value to compare

$actual : mixed

Second value to compare

$delta : float = 0.0

Allowed numerical distance between two values to consider them equal

$canonicalize : bool = false

Arrays are sorted before comparison when set to true

$ignoreCase : bool = false

Case is ignored when set to true

Tags
throws
ComparisonFailure
Return values
mixed

indent()

protected indent(mixed $lines) : mixed
Parameters
$lines : mixed
Return values
mixed

toArray()

Converts an object to an array containing all of its private, protected and public properties.

protected toArray(object $object) : array<string|int, mixed>
Parameters
$object : object
Return values
array<string|int, mixed>

Search results