function ShortcutSetsTest::testShortcutSetAssign

Tests switching another user's shortcut set.

File

drupal/core/modules/shortcut/lib/Drupal/shortcut/Tests/ShortcutSetsTest.php, line 53
Definition of Drupal\shortcut\Tests\ShortcutSetsTest.

Class

ShortcutSetsTest
Defines shortcut set test cases.

Namespace

Drupal\shortcut\Tests

Code

function testShortcutSetAssign() {
  $new_set = $this
    ->generateShortcutSet($this
    ->randomName());
  shortcut_set_assign_user($new_set, $this->shortcut_user);
  $current_set = shortcut_current_displayed_set($this->shortcut_user);
  $this
    ->assertTrue($new_set
    ->id() == $current_set
    ->id(), "Successfully switched another user's shortcut set.");
}