function LayoutSectionTest::testLayoutPageTitle

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/tests/src/Functional/LayoutSectionTest.php \Drupal\Tests\layout_builder\Functional\LayoutSectionTest::testLayoutPageTitle()
  2. 8.9.x core/modules/layout_builder/tests/src/Functional/LayoutSectionTest.php \Drupal\Tests\layout_builder\Functional\LayoutSectionTest::testLayoutPageTitle()
  3. 11.x core/modules/layout_builder/tests/src/Functional/LayoutSectionTest.php \Drupal\Tests\layout_builder\Functional\LayoutSectionTest::testLayoutPageTitle()

Ensures that the entity title is displayed.

File

core/modules/layout_builder/tests/src/Functional/LayoutSectionTest.php, line 216

Class

LayoutSectionTest
Tests the rendering of a layout section field.

Namespace

Drupal\Tests\layout_builder\Functional

Code

public function testLayoutPageTitle() : void {
  $this->drupalPlaceBlock('page_title_block');
  $node = $this->createSectionNode([]);
  $this->drupalGet($node->toUrl('canonical')
    ->toString() . '/layout');
  $this->assertSession()
    ->titleEquals('Edit layout for The node title | Drupal');
  $this->assertEquals('Edit layout for The node title', $this->cssSelect('h1.page-title')[0]
    ->getText());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.