You are here

protected function DestinationCategoryTest::getConfigurationClasses in Drupal 9

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

Get configuration classes.

Configuration migrations should have a destination plugin that is an instance of one of the following classes.

Return value

array The configuration class names.

1 call to DestinationCategoryTest::getConfigurationClasses()
DestinationCategoryTest::assertCategories in core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/DestinationCategoryTest.php
Asserts that all migrations are tagged as either Configuration or Content.

File

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

Class

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

Namespace

Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate

Code

protected function getConfigurationClasses() {
  return [
    Color::class,
    Config::class,
    EntityConfigBase::class,
    ThemeSettings::class,
    ComponentEntityDisplayBase::class,
    ShortcutSetUsers::class,
  ];
}