You are here

public function UpdateLocalTasksTest::testUpdateReportLocalTasks in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/update/tests/src/Unit/Menu/UpdateLocalTasksTest.php \Drupal\Tests\update\Unit\Menu\UpdateLocalTasksTest::testUpdateReportLocalTasks()
  2. 9 core/modules/update/tests/src/Unit/Menu/UpdateLocalTasksTest.php \Drupal\Tests\update\Unit\Menu\UpdateLocalTasksTest::testUpdateReportLocalTasks()

Checks update report tasks.

@dataProvider getUpdateReportRoutes

File

core/modules/update/tests/src/Unit/Menu/UpdateLocalTasksTest.php, line 24

Class

UpdateLocalTasksTest
Tests existence of update local tasks.

Namespace

Drupal\Tests\update\Unit\Menu

Code

public function testUpdateReportLocalTasks($route) {
  $this
    ->assertLocalTasks($route, [
    0 => [
      'update.status',
      'update.settings',
      'update.report_update',
    ],
  ]);
}