You are here

public function UpdateLocalTasksTest::testUpdateReportLocalTasks in Zircon Profile 8.0

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()

Checks update report tasks.

@dataProvider getUpdateReportRoutes

File

core/modules/update/tests/src/Unit/Menu/UpdateLocalTasksTest.php, line 29
Contains \Drupal\Tests\update\Unit\Menu\UpdateLocalTasksTest.

Class

UpdateLocalTasksTest
Tests existence of update local tasks.

Namespace

Drupal\Tests\update\Unit\Menu

Code

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