You are here

public function LocalTaskDefaultTest::testGetTitle in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Menu/LocalTaskDefaultTest.php \Drupal\Tests\Core\Menu\LocalTaskDefaultTest::testGetTitle()
  2. 9 core/tests/Drupal/Tests/Core/Menu/LocalTaskDefaultTest.php \Drupal\Tests\Core\Menu\LocalTaskDefaultTest::testGetTitle()

@covers ::getTitle

File

core/tests/Drupal/Tests/Core/Menu/LocalTaskDefaultTest.php, line 257
Contains \Drupal\Tests\Core\Menu\LocalTaskDefaultTest.

Class

LocalTaskDefaultTest
@coversDefaultClass \Drupal\Core\Menu\LocalTaskDefault @group Menu

Namespace

Drupal\Tests\Core\Menu

Code

public function testGetTitle() {
  $this->pluginDefinition['title'] = new TranslatableMarkup('Example', [], [], $this->stringTranslation);
  $this->stringTranslation
    ->expects($this
    ->once())
    ->method('translateString')
    ->with($this->pluginDefinition['title'])
    ->will($this
    ->returnValue('Example translated'));
  $this
    ->setupLocalTaskDefault();
  $this
    ->assertEquals('Example translated', $this->localTaskBase
    ->getTitle());
}