-
Notifications
You must be signed in to change notification settings - Fork 10
/
ExpressionComparator.php
67 lines (61 loc) · 1.82 KB
/
ExpressionComparator.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
/*
* This file is part of the webmozart/expression package.
*
* (c) Bernhard Schussek <bschussek@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Webmozart\Expression\PhpUnit;
use SebastianBergmann\Comparator\Comparator;
use SebastianBergmann\Comparator\ComparisonFailure;
use Webmozart\Expression\Expression;
/**
* Compares {@link Expression} objects for equality.
*
* @since 1.0
*
* @author Bernhard Schussek <bschussek@gmail.com>
*/
class ExpressionComparator extends Comparator
{
/**
* {@inheritdoc}
*/
public function accepts($expected, $actual)
{
return $expected instanceof Expression && $actual instanceof Expression;
}
/**
* {@inheritdoc}
*/
public function assertEquals($expected, $actual, $delta = 0.0, $canonicalize = false, $ignoreCase = false, array &$processed = array())
{
if (get_class($actual) !== get_class($expected)) {
throw new ComparisonFailure(
$expected,
$actual,
$this->exporter->export($expected),
$this->exporter->export($actual),
false,
sprintf(
'%s is not instance of expected class "%s".',
$this->exporter->export($actual),
get_class($expected)
)
);
}
/** @var Expression $actual */
if (!$actual->equivalentTo($expected)) {
throw new ComparisonFailure(
$expected,
$actual,
$expected->toString(),
$actual->toString(),
false,
'Failed asserting that two expressions are equal.'
);
}
}
}