You are here

protected function SectionTest::assertComponents 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::assertComponents()

Asserts that the section has the expected components.

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

... See full list

File

core/modules/layout_builder/tests/src/Unit/SectionTest.php, line 188

Class

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

Namespace

Drupal\Tests\layout_builder\Unit

Code

protected function assertComponents(array $expected, Section $section) {
  $result = $section
    ->getComponents();
  $this
    ->assertEquals($expected, $result);
  $this
    ->assertSame(array_keys($expected), array_keys($result));
}