function LocalTaskDefaultTest::testGetTitleWithTitleArguments

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Core/Menu/LocalTaskDefaultTest.php \Drupal\Tests\Core\Menu\LocalTaskDefaultTest::testGetTitleWithTitleArguments()
  2. 8.9.x core/tests/Drupal/Tests/Core/Menu/LocalTaskDefaultTest.php \Drupal\Tests\Core\Menu\LocalTaskDefaultTest::testGetTitleWithTitleArguments()
  3. 10 core/tests/Drupal/Tests/Core/Menu/LocalTaskDefaultTest.php \Drupal\Tests\Core\Menu\LocalTaskDefaultTest::testGetTitleWithTitleArguments()

@covers ::getTitle

File

core/tests/Drupal/Tests/Core/Menu/LocalTaskDefaultTest.php, line 286

Class

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

Namespace

Drupal\Tests\Core\Menu

Code

public function testGetTitleWithTitleArguments() : void {
    $this->pluginDefinition['title'] = new TranslatableMarkup('Example @test', [
        '@test' => 'value',
    ], [], $this->stringTranslation);
    $this->stringTranslation
        ->expects($this->once())
        ->method('translateString')
        ->with($this->pluginDefinition['title'])
        ->willReturn('Example value');
    $this->setupLocalTaskDefault();
    $this->assertEquals('Example value', $this->localTaskBase
        ->getTitle());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.