function BubbleableMetadataTest::providerTestAddAttachments
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Render/BubbleableMetadataTest.php \Drupal\Tests\Core\Render\BubbleableMetadataTest::providerTestAddAttachments()
- 10 core/tests/Drupal/Tests/Core/Render/BubbleableMetadataTest.php \Drupal\Tests\Core\Render\BubbleableMetadataTest::providerTestAddAttachments()
- 11.x core/tests/Drupal/Tests/Core/Render/BubbleableMetadataTest.php \Drupal\Tests\Core\Render\BubbleableMetadataTest::providerTestAddAttachments()
Provides test data for testAddAttachments().
File
-
core/
tests/ Drupal/ Tests/ Core/ Render/ BubbleableMetadataTest.php, line 119
Class
- BubbleableMetadataTest
- @coversDefaultClass \Drupal\Core\Render\BubbleableMetadata @group Render
Namespace
Drupal\Tests\Core\RenderCode
public function providerTestAddAttachments() {
return [
[
new BubbleableMetadata(),
[],
new BubbleableMetadata(),
],
[
new BubbleableMetadata(),
[
'library' => [
'core/foo',
],
],
(new BubbleableMetadata())->setAttachments([
'library' => [
'core/foo',
],
]),
],
[
(new BubbleableMetadata())->setAttachments([
'library' => [
'core/foo',
],
]),
[
'library' => [
'core/bar',
],
],
(new BubbleableMetadata())->setAttachments([
'library' => [
'core/foo',
'core/bar',
],
]),
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.