function PluginBaseTest::testViewsTokenReplaceWithTwigTokens
Tests viewsTokenReplace without any twig tokens.
File
- 
              core/modules/ views/ tests/ src/ Kernel/ Plugin/ PluginBaseTest.php, line 76 
Class
- PluginBaseTest
- Tests the PluginBase class.
Namespace
Drupal\Tests\views\Kernel\PluginCode
public function testViewsTokenReplaceWithTwigTokens() {
  $text = 'Just some text';
  $tokens = [];
  $result = $this->testPluginBase
    ->viewsTokenReplace($text, $tokens);
  $this->assertSame('Just some text', $result);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
