function ConfigTest::nestedDataProvider
Provides nested test data.
See also
\Drupal\Tests\Core\Config\ConfigTest::testSetData()
\Drupal\Tests\Core\Config\ConfigTest::testSave()
\Drupal\Tests\Core\Config\ConfigTest::testSetValue()
\Drupal\Tests\Core\Config\ConfigTest::testInitWithData()
\Drupal\Tests\Core\Config\ConfigTest::testNestedClear()
File
- 
              core/tests/ Drupal/ Tests/ Core/ Config/ ConfigTest.php, line 564 
Class
- ConfigTest
- Tests the Config.
Namespace
Drupal\Tests\Core\ConfigCode
public function nestedDataProvider() {
  return [
    [
      [
        'a' => [
          'd' => 1,
        ],
        'b' => [
          'e' => 2,
        ],
        'c' => [
          'f' => 3,
        ],
      ],
    ],
  ];
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
