You are here

public function LocalTaskManagerTest::testGetLocalTasksForRouteSingleLevelTitle in Drupal 8

Tests the getLocalTasksForRoute method.

See also

\Drupal\system\Plugin\Type\MenuLocalTaskManager::getLocalTasksForRoute()

File

core/tests/Drupal/Tests/Core/Menu/LocalTaskManagerTest.php, line 122

Class

LocalTaskManagerTest
@coversDefaultClass \Drupal\Core\Menu\LocalTaskManager @group Menu

Namespace

Drupal\Tests\Core\Menu

Code

public function testGetLocalTasksForRouteSingleLevelTitle() {
  $definitions = $this
    ->getLocalTaskFixtures();
  $this->pluginDiscovery
    ->expects($this
    ->once())
    ->method('getDefinitions')
    ->will($this
    ->returnValue($definitions));
  $mock_plugin = $this
    ->createMock('Drupal\\Core\\Menu\\LocalTaskInterface');
  $this
    ->setupFactory($mock_plugin);
  $this
    ->setupLocalTaskManager();
  $local_tasks = $this->manager
    ->getLocalTasksForRoute('menu_local_task_test_tasks_view');
  $result = $this
    ->getLocalTasksForRouteResult($mock_plugin);
  $this
    ->assertEquals($result, $local_tasks);
}