db backup prior to drupal security update
[yaffs-website] / web / core / modules / comment / tests / src / Kernel / Migrate / d6 / MigrateCommentVariableDisplayBase.php
1 <?php
2
3 namespace Drupal\Tests\comment\Kernel\Migrate\d6;
4
5 use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
6
7 /**
8  * Base class for Drupal 6 comment variables to Drupal 8 entity display tests.
9  */
10 abstract class MigrateCommentVariableDisplayBase extends MigrateDrupal6TestBase {
11
12   /**
13    * {@inheritdoc}
14    */
15   public static $modules = ['comment'];
16
17   /**
18    * {@inheritdoc}
19    */
20   protected function setUp() {
21     parent::setUp();
22     $this->installConfig(['comment']);
23     $this->migrateContentTypes();
24     $this->executeMigrations([
25       'd6_comment_type',
26       'd6_comment_field',
27       'd6_comment_field_instance',
28     ]);
29   }
30
31 }