function ShortcutSetsTest::testShortcutSetCreateWithSetName

Same name and namespace in other branches
  1. 9 core/modules/shortcut/tests/src/Functional/ShortcutSetsTest.php \Drupal\Tests\shortcut\Functional\ShortcutSetsTest::testShortcutSetCreateWithSetName()
  2. 8.9.x core/modules/shortcut/tests/src/Functional/ShortcutSetsTest.php \Drupal\Tests\shortcut\Functional\ShortcutSetsTest::testShortcutSetCreateWithSetName()
  3. 11.x core/modules/shortcut/tests/src/Functional/ShortcutSetsTest.php \Drupal\Tests\shortcut\Functional\ShortcutSetsTest::testShortcutSetCreateWithSetName()

Tests creating a new shortcut set with a defined set name.

File

core/modules/shortcut/tests/src/Functional/ShortcutSetsTest.php, line 230

Class

ShortcutSetsTest
Create, view, edit, delete, and change shortcut sets.

Namespace

Drupal\Tests\shortcut\Functional

Code

public function testShortcutSetCreateWithSetName() : void {
  $random_name = $this->randomMachineName();
  $new_set = $this->generateShortcutSet($random_name, $random_name);
  $sets = ShortcutSet::loadMultiple();
  $this->assertTrue(isset($sets[$random_name]), 'Successfully created a shortcut set with a defined set name.');
  $this->drupalGet('user/' . $this->adminUser
    ->id() . '/shortcuts');
  // Verify that generated shortcut set was listed as a choice on the user
  // account page.
  $this->assertSession()
    ->pageTextContains($new_set->label());
}

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