public function TokenTest::testReplaceEscaping in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Utility/TokenTest.php \Drupal\Tests\Core\Utility\TokenTest::testReplaceEscaping()
@covers ::replace @dataProvider providerTestReplaceEscaping
File
- core/
tests/ Drupal/ Tests/ Core/ Utility/ TokenTest.php, line 266
Class
- TokenTest
- @coversDefaultClass \Drupal\Core\Utility\Token @group Utility
Namespace
Drupal\Tests\Core\UtilityCode
public function testReplaceEscaping($string, array $tokens, $expected) {
$this->moduleHandler
->expects($this
->any())
->method('invokeAll')
->willReturnCallback(function ($type, $args) {
return $args[2]['tokens'];
});
$result = $this->token
->replace($string, [
'tokens' => $tokens,
]);
$this
->assertIsString($result);
$this
->assertEquals($expected, $result);
}