function DiffArrayTest::testDiffAssocRecursive

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Core/Common/DiffArrayTest.php \Drupal\Tests\Core\Common\DiffArrayTest::testDiffAssocRecursive()
  2. 10 core/tests/Drupal/Tests/Core/Common/DiffArrayTest.php \Drupal\Tests\Core\Common\DiffArrayTest::testDiffAssocRecursive()
  3. 11.x 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 58

Class

DiffArrayTest
Tests the DiffArray helper class.

Namespace

Drupal\Tests\Core\Common

Code

public function testDiffAssocRecursive() {
    $expected = [
        'different' => 'no',
        'int_diff' => 1,
        // The 'array' key should not be returned, as it's the same.
'array_diff' => [
            'same' => 'same',
        ],
        'array_compared_to_string' => [
            'value',
        ],
        'string_compared_to_array' => 'value',
        'new' => 'new',
    ];
    $this->assertSame($expected, DiffArray::diffAssocRecursive($this->array1, $this->array2));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.