You are here

protected function MigrateCommentEntityFormDisplayTest::setUp in Drupal 9

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

Overrides MigrateDrupal7TestBase::setUp

File

core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityFormDisplayTest.php, line 24

Class

MigrateCommentEntityFormDisplayTest
Tests the migration of comment form display from Drupal 7.

Namespace

Drupal\Tests\comment\Kernel\Migrate\d7

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->migrateContentTypes();
  $this
    ->migrateCommentTypes();
  $this
    ->executeMigrations([
    'd7_comment_field',
    'd7_comment_field_instance',
    'd7_comment_entity_form_display',
  ]);
}