public function DiffArrayTest::testDiffAssocRecursive in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Common/DiffArrayTest.php \Drupal\Tests\Core\Common\DiffArrayTest::testDiffAssocRecursive()
Tests DiffArray::diffAssocRecursive().
File
- core/
tests/ Drupal/ Tests/ Core/ Common/ DiffArrayTest.php, line 63 - Contains \Drupal\Tests\Core\Common\DiffArrayTest.
Class
- DiffArrayTest
- Tests the DiffArray helper class.
Namespace
Drupal\Tests\Core\CommonCode
public function testDiffAssocRecursive() {
$expected = array(
'different' => 'no',
'int_diff' => 1,
// The 'array' key should not be returned, as it's the same.
'array_diff' => array(
'same' => 'same',
),
'array_compared_to_string' => array(
'value',
),
'string_compared_to_array' => 'value',
'new' => 'new',
);
$this
->assertSame(DiffArray::diffAssocRecursive($this->array1, $this->array2), $expected);
}