public function TokenTest::testResetInfo in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Utility/TokenTest.php \Drupal\Tests\Core\Utility\TokenTest::testResetInfo()
- 9 core/tests/Drupal/Tests/Core/Utility/TokenTest.php \Drupal\Tests\Core\Utility\TokenTest::testResetInfo()
@covers ::resetInfo
File
- core/
tests/ Drupal/ Tests/ Core/ Utility/ TokenTest.php, line 254
Class
- TokenTest
- @coversDefaultClass \Drupal\Core\Utility\Token @group Utility
Namespace
Drupal\Tests\Core\UtilityCode
public function testResetInfo() {
$this->cacheTagsInvalidator
->expects($this
->once())
->method('invalidateTags')
->with([
'token_info',
]);
$this->token
->resetInfo();
}