function ConfigTest::mergeDataProvider

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest::mergeDataProvider()
  2. 8.9.x core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest::mergeDataProvider()
  3. 11.x core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest::mergeDataProvider()

Provides data to test merges.

See also

\Drupal\Tests\Core\Config\ConfigTest::testMerge()

File

core/tests/Drupal/Tests/Core/Config/ConfigTest.php, line 404

Class

ConfigTest
Tests the Config.

Namespace

Drupal\Tests\Core\Config

Code

public static function mergeDataProvider() {
  return [
    [
      // Data.
[
        'a' => 1,
        'b' => 2,
        'c' => [
          'd' => 3,
        ],
      ],
      // Data to merge.
[
        'a' => 2,
        'e' => 4,
        'c' => [
          'f' => 5,
        ],
      ],
      // Data merged.
[
        'a' => 2,
        'b' => 2,
        'c' => [
          'd' => 3,
          'f' => 5,
        ],
        'e' => 4,
      ],
    ],
  ];
}

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