You are here

protected function RedirectImportExportTest::setUp in Acquia Content Hub 8.2

Overrides ImportExportTestBase::setUp

File

tests/src/Kernel/RedirectImportExportTest.php, line 59

Class

RedirectImportExportTest
Tests redirect export and import.

Namespace

Drupal\Tests\acquia_contenthub\Kernel

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installEntitySchema('user');
  $this
    ->installSchema('user', [
    'users_data',
  ]);
  $this
    ->installEntitySchema('node');
  $this
    ->installSchema('node', [
    'node_access',
  ]);
  $this
    ->installEntitySchema('redirect');
  $this
    ->installEntitySchema('menu_link_content');
  $this
    ->installSchema('acquia_contenthub_subscriber', 'acquia_contenthub_subscriber_import_tracking');
  $this
    ->drupalSetUpCurrentUser();
}