function TokenTest::setupSiteTokens

Same name and namespace in other branches
  1. 10 core/tests/Drupal/Tests/Core/Utility/TokenTest.php \Drupal\Tests\Core\Utility\TokenTest::setupSiteTokens()
  2. 11.x core/tests/Drupal/Tests/Core/Utility/TokenTest.php \Drupal\Tests\Core\Utility\TokenTest::setupSiteTokens()

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 <a href="/api/drupal/core%21lib%21Drupal%21Core%21Utility%21Token.php/class/Token/9" title="Drupal placeholder/token replacement system." class="local">\Drupal\Core\Utility\Token</a> @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);
}

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