public function SectionTest::testInsertComponentInvalidDelta in Drupal 9
Same name and namespace in other branches
- 8 core/modules/layout_builder/tests/src/Unit/SectionTest.php \Drupal\Tests\layout_builder\Unit\SectionTest::testInsertComponentInvalidDelta()
@covers ::insertComponent
File
- core/
modules/ layout_builder/ tests/ src/ Unit/ SectionTest.php, line 178
Class
- SectionTest
- @coversDefaultClass \Drupal\layout_builder\Section @group layout_builder
Namespace
Drupal\Tests\layout_builder\UnitCode
public function testInsertComponentInvalidDelta() {
$this
->expectException(\OutOfBoundsException::class);
$this
->expectExceptionMessage('Invalid delta "7" for the "new-uuid" component');
$this->section
->insertComponent(7, new SectionComponent('new-uuid', 'ordered-region'));
}