You are here

protected function DestinationCategoryTest::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/DestinationCategoryTest.php \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\DestinationCategoryTest::setUp()

Overrides MigrateDrupalTestBase::setUp

File

core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/DestinationCategoryTest.php, line 42

Class

DestinationCategoryTest
Tests that all migrations are tagged as either content or configuration.

Namespace

Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate

Code

protected function setUp() {

  // Enable all modules.
  self::$modules = array_keys($this
    ->coreModuleListDataProvider());
  self::$modules = $this
    ->removeDeprecatedModules(self::$modules);
  parent::setUp();
  $this->migrationManager = \Drupal::service('plugin.manager.migration');
}