TokenReplaceKernelTestBase.php

Same filename and directory in other branches
  1. 9 core/modules/system/tests/src/Kernel/Token/TokenReplaceKernelTestBase.php
  2. 10 core/modules/system/tests/src/Kernel/Token/TokenReplaceKernelTestBase.php
  3. 11.x core/modules/system/tests/src/Kernel/Token/TokenReplaceKernelTestBase.php

Namespace

Drupal\Tests\system\Kernel\Token

File

core/modules/system/tests/src/Kernel/Token/TokenReplaceKernelTestBase.php

View source
<?php

namespace Drupal\Tests\system\Kernel\Token;

use Drupal\KernelTests\Core\Entity\EntityKernelTestBase;

/**
 * Base class for token replacement tests.
 */
abstract class TokenReplaceKernelTestBase extends EntityKernelTestBase {
    
    /**
     * The interface language.
     *
     * @var \Drupal\Core\Language\LanguageInterface
     */
    protected $interfaceLanguage;
    
    /**
     * Token service.
     *
     * @var \Drupal\Core\Utility\Token
     */
    protected $tokenService;
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    public static $modules = [
        'system',
    ];
    protected function setUp() {
        parent::setUp();
        // Install default system configuration.
        $this->installConfig([
            'system',
        ]);
        \Drupal::service('router.builder')->rebuild();
        $this->interfaceLanguage = \Drupal::languageManager()->getCurrentLanguage();
        $this->tokenService = \Drupal::token();
    }

}

Classes

Title Deprecated Summary
TokenReplaceKernelTestBase Base class for token replacement tests.

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