public function BubbleableMetadataTest::testApplyTo in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Render/BubbleableMetadataTest.php \Drupal\Tests\Core\Render\BubbleableMetadataTest::testApplyTo()
@covers ::applyTo @dataProvider providerTestApplyTo
File
- core/
tests/ Drupal/ Tests/ Core/ Render/ BubbleableMetadataTest.php, line 134
Class
- BubbleableMetadataTest
- @coversDefaultClass \Drupal\Core\Render\BubbleableMetadata @group Render
Namespace
Drupal\Tests\Core\RenderCode
public function testApplyTo(BubbleableMetadata $metadata, array $render_array, array $expected) {
$this
->assertNull($metadata
->applyTo($render_array));
$this
->assertEquals($expected, $render_array);
}