You are here

public function SectionTest::testInsertComponentInvalidDelta in Drupal 8

Same name and namespace in other branches
  1. 9 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 174

Class

SectionTest
@coversDefaultClass \Drupal\layout_builder\Section @group layout_builder

Namespace

Drupal\Tests\layout_builder\Unit

Code

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