function SectionTest::assertComponents
Same name in other branches
- 8.9.x core/modules/layout_builder/tests/src/Unit/SectionTest.php \Drupal\Tests\layout_builder\Unit\SectionTest::assertComponents()
- 10 core/modules/layout_builder/tests/src/Unit/SectionTest.php \Drupal\Tests\layout_builder\Unit\SectionTest::assertComponents()
- 11.x core/modules/layout_builder/tests/src/Unit/SectionTest.php \Drupal\Tests\layout_builder\Unit\SectionTest::assertComponents()
Asserts that the section has the expected components.
@internal
Parameters
\Drupal\layout_builder\SectionComponent[] $expected: The expected sections.
\Drupal\layout_builder\Section $section: The section storage to check.
6 calls to SectionTest::assertComponents()
- SectionTest::testAppendComponent in core/
modules/ layout_builder/ tests/ src/ Unit/ SectionTest.php - @covers ::appendComponent @covers ::getNextHighestWeight @covers ::getComponentsByRegion
- SectionTest::testGetComponents in core/
modules/ layout_builder/ tests/ src/ Unit/ SectionTest.php - @covers ::__construct @covers ::setComponent @covers ::getComponents
- SectionTest::testInsertAfterComponent in core/
modules/ layout_builder/ tests/ src/ Unit/ SectionTest.php - @covers ::insertAfterComponent
- SectionTest::testInsertComponent in core/
modules/ layout_builder/ tests/ src/ Unit/ SectionTest.php - @covers ::insertComponent @covers ::getComponentsByRegion
- SectionTest::testInsertComponentAppend in core/
modules/ layout_builder/ tests/ src/ Unit/ SectionTest.php - @covers ::insertComponent
File
-
core/
modules/ layout_builder/ tests/ src/ Unit/ SectionTest.php, line 194
Class
- SectionTest
- @coversDefaultClass \Drupal\layout_builder\Section @group layout_builder
Namespace
Drupal\Tests\layout_builder\UnitCode
protected function assertComponents(array $expected, Section $section) : void {
$result = $section->getComponents();
$this->assertEquals($expected, $result);
$this->assertSame(array_keys($expected), array_keys($result));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.