@@ 441-451 (lines=11) @@ | ||
438 | * @param bool $canonicalize |
|
439 | * @param bool $ignoreCase |
|
440 | */ |
|
441 | public function assertEquals($expected, $delta = 0.0, $maxDepth = 10, $canonicalize = false, $ignoreCase = false) { |
|
442 | $this->callAssertMethod(__FUNCTION__, [ |
|
443 | 'expected' => $expected, |
|
444 | 'additionalParams' => [ |
|
445 | $delta, |
|
446 | $maxDepth, |
|
447 | $canonicalize, |
|
448 | $ignoreCase, |
|
449 | ], |
|
450 | ]); |
|
451 | } |
|
452 | ||
453 | /** |
|
454 | * Asserts that a variable is equal to an attribute of an object. |
|
@@ 480-490 (lines=11) @@ | ||
477 | * @param bool $canonicalize |
|
478 | * @param bool $ignoreCase |
|
479 | */ |
|
480 | public function assertNotEquals($expected, $delta = 0.0, $maxDepth = 10, $canonicalize = false, $ignoreCase = false) { |
|
481 | $this->callAssertMethod(__FUNCTION__, [ |
|
482 | 'expected' => $expected, |
|
483 | 'additionalParams' => [ |
|
484 | $delta, |
|
485 | $maxDepth, |
|
486 | $canonicalize, |
|
487 | $ignoreCase, |
|
488 | ], |
|
489 | ]); |
|
490 | } |
|
491 | ||
492 | /** |
|
493 | * Asserts that a variable is not equal to an attribute of an object. |