public function TaxonomyLocalTasksTest::testTaxonomyPageLocalTasks in Drupal 10
Same name and namespace in other branches
- 8 core/modules/taxonomy/tests/src/Unit/Menu/TaxonomyLocalTasksTest.php \Drupal\Tests\taxonomy\Unit\Menu\TaxonomyLocalTasksTest::testTaxonomyPageLocalTasks()
- 9 core/modules/taxonomy/tests/src/Unit/Menu/TaxonomyLocalTasksTest.php \Drupal\Tests\taxonomy\Unit\Menu\TaxonomyLocalTasksTest::testTaxonomyPageLocalTasks()
Checks taxonomy edit local tasks.
@dataProvider getTaxonomyPageRoutes
File
- core/modules/ taxonomy/ tests/ src/ Unit/ Menu/ TaxonomyLocalTasksTest.php, line 24 
Class
- TaxonomyLocalTasksTest
- Tests existence of taxonomy local tasks.
Namespace
Drupal\Tests\taxonomy\Unit\MenuCode
public function testTaxonomyPageLocalTasks($route, $subtask = []) {
  $tasks = [
    0 => [
      'entity.taxonomy_term.canonical',
      'entity.taxonomy_term.edit_form',
      'entity.taxonomy_term.delete_form',
    ],
  ];
  if ($subtask) {
    $tasks[] = $subtask;
  }
  $this
    ->assertLocalTasks($route, $tasks);
}