You are here

public function DiffArrayTest::testDiffAssocRecursive in Drupal 8

Same name and namespace 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()

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));
}