class ActionLocalTasksTest

Tests action local tasks.

@group action

Hierarchy

Expanded class hierarchy of ActionLocalTasksTest

File

core/modules/action/tests/src/Unit/Menu/ActionLocalTasksTest.php, line 12

Namespace

Drupal\Tests\action\Unit\Menu
View source
class ActionLocalTasksTest extends LocalTaskIntegrationTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    $this->directoryList = [
      'action' => 'core/modules/action',
    ];
    parent::setUp();
  }
  
  /**
   * Tests local task existence.
   */
  public function testActionLocalTasks() {
    $this->assertLocalTasks('entity.action.collection', [
      [
        'action.admin',
      ],
    ]);
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.