public function DiffArrayTest::testDiffAssocRecursive in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Common/DiffArrayTest.php \Drupal\Tests\Core\Common\DiffArrayTest::testDiffAssocRecursive()
- 9 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\CommonCode
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));
}