function ElementTest::providerTestSetAttributes
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::providerTestSetAttributes()
- 8.9.x core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::providerTestSetAttributes()
- 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 @group Render
Namespace
Drupal\Tests\Core\RenderCode
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.