function TitleResolverTest::testDynamicTitle
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Controller/TitleResolverTest.php \Drupal\Tests\Core\Controller\TitleResolverTest::testDynamicTitle()
- 10 core/tests/Drupal/Tests/Core/Controller/TitleResolverTest.php \Drupal\Tests\Core\Controller\TitleResolverTest::testDynamicTitle()
- 11.x core/tests/Drupal/Tests/Core/Controller/TitleResolverTest.php \Drupal\Tests\Core\Controller\TitleResolverTest::testDynamicTitle()
Tests a dynamic title.
See also
\Drupal\Core\Controller\TitleResolver::getTitle()
File
-
core/
tests/ Drupal/ Tests/ Core/ Controller/ TitleResolverTest.php, line 110
Class
- TitleResolverTest
- @coversDefaultClass \Drupal\Core\Controller\TitleResolver @group Controller
Namespace
Drupal\Tests\Core\ControllerCode
public function testDynamicTitle() {
$request = new Request();
$route = new Route('/test-route', [
'_title' => 'static title',
'_title_callback' => 'Drupal\\Tests\\Core\\Controller\\TitleCallback::example',
]);
$callable = [
new TitleCallback(),
'example',
];
$this->controllerResolver
->expects($this->once())
->method('getControllerFromDefinition')
->with('Drupal\\Tests\\Core\\Controller\\TitleCallback::example')
->will($this->returnValue($callable));
$this->argumentResolver
->expects($this->once())
->method('getArguments')
->with($request, $callable)
->will($this->returnValue([
'example',
]));
$this->assertEquals('test example', $this->titleResolver
->getTitle($request, $route));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.