You are here

protected function TokenTest::setupSiteTokens in Drupal 10

Sets up the token library to return site tokens.

1 call to TokenTest::setupSiteTokens()
TokenTest::testReplacePlain in core/tests/Drupal/Tests/Core/Utility/TokenTest.php
@covers ::replacePlain

File

core/tests/Drupal/Tests/Core/Utility/TokenTest.php, line 310

Class

TokenTest
@coversDefaultClass \Drupal\Core\Utility\Token @group Utility

Namespace

Drupal\Tests\Core\Utility

Code

protected function setupSiteTokens() {

  // The site name is plain text, but the slogan is markup.
  $tokens = [
    '[site:name]' => 'Your <best> buys',
    '[site:slogan]' => Markup::Create('We are <b>best</b>'),
  ];
  $this->moduleHandler
    ->expects($this
    ->any())
    ->method('invokeAll')
    ->willReturn($tokens);
}