function LocalActionDefaultTest::testGetTitleWithContext
Tests the getTitle method with a translation context.
See also
\Drupal\Core\Menu\LocalTaskDefault::getTitle()
File
-
core/
tests/ Drupal/ Tests/ Core/ Menu/ LocalActionDefaultTest.php, line 98
Class
- LocalActionDefaultTest
- @coversDefaultClass \Drupal\Core\Menu\LocalActionDefault[[api-linebreak]] @group Menu
Namespace
Drupal\Tests\Core\MenuCode
public function testGetTitleWithContext() {
$this->pluginDefinition['title'] = new TranslatableMarkup('Example', [], [
'context' => 'context',
], $this->stringTranslation);
$this->stringTranslation
->expects($this->once())
->method('translateString')
->with($this->pluginDefinition['title'])
->willReturn('Example translated with context');
$this->setupLocalActionDefault();
$this->assertEquals('Example translated with context', $this->localActionDefault
->getTitle());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.