function 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\d7Code
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',
  ]);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
