You are here

protected function MenuRouterTest::doTestTitleCallbackFalse in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Functional/Menu/MenuRouterTest.php \Drupal\Tests\system\Functional\Menu\MenuRouterTest::doTestTitleCallbackFalse()

Tests title callback set to FALSE.

File

core/modules/system/tests/src/Functional/Menu/MenuRouterTest.php, line 80

Class

MenuRouterTest
Tests menu router and default menu link functionality.

Namespace

Drupal\Tests\system\Functional\Menu

Code

protected function doTestTitleCallbackFalse() {
  $this
    ->drupalGet('test-page');
  $this
    ->assertSession()
    ->pageTextContains('A title with @placeholder', 'Raw text found on the page');
  $this
    ->assertSession()
    ->pageTextNotContains('A title with some other text', 'Text with placeholder substitutions not found.');
}