function NestedArrayTest::setUp

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Component/Utility/NestedArrayTest.php \Drupal\Tests\Component\Utility\NestedArrayTest::setUp()
  2. 8.9.x core/tests/Drupal/Tests/Component/Utility/NestedArrayTest.php \Drupal\Tests\Component\Utility\NestedArrayTest::setUp()
  3. 11.x core/tests/Drupal/Tests/Component/Utility/NestedArrayTest.php \Drupal\Tests\Component\Utility\NestedArrayTest::setUp()

File

core/tests/Drupal/Tests/Component/Utility/NestedArrayTest.php, line 33

Class

NestedArrayTest
@coversDefaultClass \Drupal\Component\Utility\NestedArray @group Utility

Namespace

Drupal\Tests\Component\Utility

Code

protected function setUp() : void {
    parent::setUp();
    // Create a form structure with a nested element.
    $this->form['details']['element'] = [
        '#value' => 'Nested element',
    ];
    // Set up parent array.
    $this->parents = [
        'details',
        'element',
    ];
}

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