You are here

public function TaxonomyLocalTasksTest::testTaxonomyPageLocalTasks in Drupal 9

Same name and namespace in other branches
  1. 8 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\Menu

Code

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);
}