You are here

public function BubbleableMetadataTest::providerTestAddAttachments in Drupal 10

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

Code

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',
        ],
      ]),
    ],
  ];
}