function MigrateCommentTest::setUp

Same name in this branch
  1. 8.9.x core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentTest.php \Drupal\Tests\comment\Kernel\Migrate\d7\MigrateCommentTest::setUp()
Same name and namespace in other branches
  1. 9 core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentTest.php \Drupal\Tests\comment\Kernel\Migrate\d6\MigrateCommentTest::setUp()
  2. 9 core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentTest.php \Drupal\Tests\comment\Kernel\Migrate\d7\MigrateCommentTest::setUp()
  3. 10 core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentTest.php \Drupal\Tests\comment\Kernel\Migrate\d6\MigrateCommentTest::setUp()
  4. 10 core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentTest.php \Drupal\Tests\comment\Kernel\Migrate\d7\MigrateCommentTest::setUp()
  5. 11.x core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentTest.php \Drupal\Tests\comment\Kernel\Migrate\d6\MigrateCommentTest::setUp()
  6. 11.x core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentTest.php \Drupal\Tests\comment\Kernel\Migrate\d7\MigrateCommentTest::setUp()

Overrides MigrateDrupal6TestBase::setUp

File

core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentTest.php, line 33

Class

MigrateCommentTest
Tests the migration of comments from Drupal 6.

Namespace

Drupal\Tests\comment\Kernel\Migrate\d6

Code

protected function setUp() {
    parent::setUp();
    $this->installEntitySchema('node');
    $this->installEntitySchema('comment');
    $this->installSchema('comment', [
        'comment_entity_statistics',
    ]);
    $this->installSchema('node', [
        'node_access',
    ]);
    $this->installConfig([
        'comment',
    ]);
    // The entity.node.canonical route must exist when the RDF hook is called.
    $this->container
        ->get('router.builder')
        ->rebuild();
    $this->migrateContent();
    $this->executeMigrations([
        'language',
        'd6_language_content_settings',
        'd6_node',
        'd6_node_translation',
        'd6_comment_type',
        'd6_comment_field',
        'd6_comment_field_instance',
        'd6_comment_entity_display',
        'd6_comment_entity_form_display',
        'd6_comment',
    ]);
}

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