You are here

protected function MigrateShortcutSetTest::assertEntity in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutSetTest.php \Drupal\Tests\shortcut\Kernel\Migrate\d7\MigrateShortcutSetTest::assertEntity()
  2. 10 core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutSetTest.php \Drupal\Tests\shortcut\Kernel\Migrate\d7\MigrateShortcutSetTest::assertEntity()

Asserts various aspects of a shortcut set entity.

Parameters

string $id: The expected shortcut set ID.

string $label: The expected shortcut set label.

int $expected_size: The number of shortcuts expected to be in the set.

1 call to MigrateShortcutSetTest::assertEntity()
MigrateShortcutSetTest::testShortcutSetMigration in core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutSetTest.php
Tests the shortcut set migration.

File

core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutSetTest.php, line 58

Class

MigrateShortcutSetTest
Test shortcut_set migration to ShortcutSet entities.

Namespace

Drupal\Tests\shortcut\Kernel\Migrate\d7

Code

protected function assertEntity($id, $label, $expected_size) {
  $shortcut_set = ShortcutSet::load($id);
  $this
    ->assertInstanceOf(ShortcutSetInterface::class, $shortcut_set);

  /** @var \Drupal\shortcut\ShortcutSetInterface $shortcut_set */
  $this
    ->assertSame($id, $shortcut_set
    ->id());
  $this
    ->assertSame($label, $shortcut_set
    ->label());

  // Check the number of shortcuts in the set.
  $shortcuts = $shortcut_set
    ->getShortcuts();
  $this
    ->assertCount($expected_size, $shortcuts);
}