public function TaxonomyLocalTasksTest::testTaxonomyPageLocalTasks in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 29 - Contains \Drupal\Tests\taxonomy\Unit\Menu\TaxonomyLocalTasksTest.
Class
- TaxonomyLocalTasksTest
- Tests existence of taxonomy local tasks.
Namespace
Drupal\Tests\taxonomy\Unit\MenuCode
public function testTaxonomyPageLocalTasks($route, $subtask = array()) {
$tasks = array(
0 => array(
'entity.taxonomy_term.canonical',
'entity.taxonomy_term.edit_form',
),
);
if ($subtask) {
$tasks[] = $subtask;
}
$this
->assertLocalTasks($route, $tasks);
}