function ElementTest::providerTestSetAttributes

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

Data provider for testSetAttributes().

File

core/tests/Drupal/Tests/Core/Render/ElementTest.php, line 172

Class

ElementTest
@coversDefaultClass \Drupal\Core\Render\Element[[api-linebreak]] @group Render

Namespace

Drupal\Tests\Core\Render

Code

public static function providerTestSetAttributes() {
  $base = [
    '#id' => 'id',
    '#class' => [],
  ];
  return [
    [
      $base,
      [],
      $base,
    ],
    [
      $base,
      [
        'id',
        'class',
      ],
      $base + [
        '#attributes' => [
          'id' => 'id',
          'class' => [],
        ],
      ],
    ],
    [
      $base + [
        '#attributes' => [
          'id' => 'id-not-overwritten',
        ],
      ],
      [
        'id',
        'class',
      ],
      $base + [
        '#attributes' => [
          'id' => 'id-not-overwritten',
          'class' => [],
        ],
      ],
    ],
  ];
}

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