function BubbleableMetadataTest::providerTestAddAttachments

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Render/BubbleableMetadataTest.php \Drupal\Tests\Core\Render\BubbleableMetadataTest::providerTestAddAttachments()
  2. 8.9.x core/tests/Drupal/Tests/Core/Render/BubbleableMetadataTest.php \Drupal\Tests\Core\Render\BubbleableMetadataTest::providerTestAddAttachments()
  3. 10 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 125

Class

BubbleableMetadataTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Render%21BubbleableMetadata.php/class/BubbleableMetadata/11.x" title="Value object used for bubbleable rendering metadata." class="local">\Drupal\Core\Render\BubbleableMetadata</a> @group Render

Namespace

Drupal\Tests\Core\Render

Code

public static 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.