function SectionStorageTestBase::assertSections
Asserts that the field list has the expected sections.
Parameters
\Drupal\layout_builder\Section[] $expected: The expected sections.
6 calls to SectionStorageTestBase::assertSections()
- SectionStorageTestBase::testAppendSection in core/
modules/ layout_builder/ tests/ src/ Kernel/ SectionStorageTestBase.php - @covers ::appendSection
- SectionStorageTestBase::testGetSections in core/
modules/ layout_builder/ tests/ src/ Kernel/ SectionStorageTestBase.php - Tests ::getSections().
- SectionStorageTestBase::testInsertSection in core/
modules/ layout_builder/ tests/ src/ Kernel/ SectionStorageTestBase.php - @covers ::insertSection
- SectionStorageTestBase::testRemoveAllSections in core/
modules/ layout_builder/ tests/ src/ Kernel/ SectionStorageTestBase.php - @covers ::removeAllSections
- SectionStorageTestBase::testRemoveMultipleSections in core/
modules/ layout_builder/ tests/ src/ Kernel/ SectionStorageTestBase.php - @covers ::removeSection
File
-
core/
modules/ layout_builder/ tests/ src/ Kernel/ SectionStorageTestBase.php, line 197
Class
- SectionStorageTestBase
- Provides a base class for testing implementations of section storage.
Namespace
Drupal\Tests\layout_builder\KernelCode
protected function assertSections(array $expected) {
$result = $this->sectionStorage
->getSections();
$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.