You are here

protected function Upgrade7Test::getEntityCounts in Drupal 10

Same name in this branch
  1. 10 core/modules/rdf/tests/src/Functional/Migrate/Upgrade7Test.php \Drupal\Tests\rdf\Functional\Migrate\Upgrade7Test::getEntityCounts()
  2. 10 core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php \Drupal\Tests\migrate_drupal_ui\Functional\d7\Upgrade7Test::getEntityCounts()
Same name and namespace in other branches
  1. 8 core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php \Drupal\Tests\migrate_drupal_ui\Functional\d7\Upgrade7Test::getEntityCounts()
  2. 9 core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php \Drupal\Tests\migrate_drupal_ui\Functional\d7\Upgrade7Test::getEntityCounts()

File

core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php, line 75

Class

Upgrade7Test
Tests Drupal 7 upgrade using the migrate UI.

Namespace

Drupal\Tests\migrate_drupal_ui\Functional\d7

Code

protected function getEntityCounts() {
  return [
    'block' => 27,
    'block_content' => 1,
    'block_content_type' => 1,
    'comment' => 4,
    // The 'standard' profile provides the 'comment' comment type, and the
    // migration creates 6 comment types, one per node type.
    'comment_type' => 9,
    // Module 'language' comes with 'en', 'und', 'zxx'. Migration adds 'is'
    // and 'fr'.
    'configurable_language' => 5,
    'contact_form' => 3,
    'contact_message' => 0,
    'editor' => 2,
    'field_config' => 91,
    'field_storage_config' => 70,
    'file' => 3,
    'filter_format' => 7,
    'image_style' => 7,
    'language_content_settings' => 24,
    'node' => 7,
    'node_type' => 8,
    'search_page' => 2,
    'shortcut' => 6,
    'shortcut_set' => 2,
    'action' => 27,
    'menu' => 7,
    'taxonomy_term' => 25,
    'taxonomy_vocabulary' => 8,
    'path_alias' => 8,
    'tour' => 6,
    'user' => 4,
    'user_role' => 4,
    'menu_link_content' => 12,
    'view' => 14,
    'date_format' => 12,
    'entity_form_display' => 24,
    'entity_form_mode' => 1,
    'entity_view_display' => 34,
    'entity_view_mode' => 12,
    'base_field_override' => 4,
  ];
}