You are here

protected function MigrateNodeCounterTest::setUp in Drupal 9

Same name in this branch
  1. 9 core/modules/statistics/tests/src/Kernel/Migrate/d6/MigrateNodeCounterTest.php \Drupal\Tests\statistics\Kernel\Migrate\d6\MigrateNodeCounterTest::setUp()
  2. 9 core/modules/statistics/tests/src/Kernel/Migrate/d7/MigrateNodeCounterTest.php \Drupal\Tests\statistics\Kernel\Migrate\d7\MigrateNodeCounterTest::setUp()
Same name and namespace in other branches
  1. 8 core/modules/statistics/tests/src/Kernel/Migrate/d7/MigrateNodeCounterTest.php \Drupal\Tests\statistics\Kernel\Migrate\d7\MigrateNodeCounterTest::setUp()

Overrides MigrateDrupal7TestBase::setUp

File

core/modules/statistics/tests/src/Kernel/Migrate/d7/MigrateNodeCounterTest.php, line 29

Class

MigrateNodeCounterTest
Tests the migration of node counter data to Drupal 8.

Namespace

Drupal\Tests\statistics\Kernel\Migrate\d7

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->installSchema('node', [
    'node_access',
  ]);
  $this
    ->installSchema('statistics', [
    'node_counter',
  ]);
  $this
    ->migrateUsers(FALSE);
  $this
    ->migrateContentTypes();
  $this
    ->executeMigrations([
    'language',
    'd7_language_content_settings',
    'd7_node',
    'd7_node_translation',
    'statistics_node_counter',
  ]);
}