You are here

public function PluginBaseTest::testViewsTokenReplaceWithTwigTokens in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/tests/src/Kernel/Plugin/PluginBaseTest.php \Drupal\Tests\views\Kernel\Plugin\PluginBaseTest::testViewsTokenReplaceWithTwigTokens()

Tests viewsTokenReplace without any twig tokens.

File

core/modules/views/tests/src/Kernel/Plugin/PluginBaseTest.php, line 73
Contains \Drupal\views\Tests\Plugin\PluginBaseTest.

Class

PluginBaseTest
Tests the PluginBase class.

Namespace

Drupal\Tests\views\Kernel\Plugin

Code

public function testViewsTokenReplaceWithTwigTokens() {
  $text = 'Just some text';
  $tokens = [];
  $result = $this->testPluginBase
    ->viewsTokenReplace($text, $tokens);
  $this
    ->assertSame('Just some text', $result);
}