public function ElementTest::providerTestSetAttributes in Drupal 9
Same name and namespace in other branches
- 8 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 170
Class
- ElementTest
- @coversDefaultClass \Drupal\Core\Render\Element @group Render
Namespace
Drupal\Tests\Core\RenderCode
public 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' => [],
],
],
],
];
}