protected function ContentEntityTest::migrationDefinition in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/ContentEntityTest.php \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\ContentEntityTest::migrationDefinition()
Get a migration definition.
Parameters
string $plugin_id: The plugin id.
array $configuration: The plugin configuration.
Return value
array The definition.
5 calls to ContentEntityTest::migrationDefinition()
- ContentEntityTest::testFileSource in core/modules/ migrate_drupal/ tests/ src/ Kernel/ Plugin/ migrate/ source/ ContentEntityTest.php 
- Tests file source plugin.
- ContentEntityTest::testMediaSource in core/modules/ migrate_drupal/ tests/ src/ Kernel/ Plugin/ migrate/ source/ ContentEntityTest.php 
- Tests media source plugin.
- ContentEntityTest::testNodeSource in core/modules/ migrate_drupal/ tests/ src/ Kernel/ Plugin/ migrate/ source/ ContentEntityTest.php 
- Tests node source plugin.
- ContentEntityTest::testTermSource in core/modules/ migrate_drupal/ tests/ src/ Kernel/ Plugin/ migrate/ source/ ContentEntityTest.php 
- Tests term source plugin.
- ContentEntityTest::testUserSource in core/modules/ migrate_drupal/ tests/ src/ Kernel/ Plugin/ migrate/ source/ ContentEntityTest.php 
- Tests user source plugin.
File
- core/modules/ migrate_drupal/ tests/ src/ Kernel/ Plugin/ migrate/ source/ ContentEntityTest.php, line 513 
Class
- ContentEntityTest
- Tests the entity content source plugin.
Namespace
Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\sourceCode
protected function migrationDefinition($plugin_id, array $configuration = []) {
  return [
    'source' => [
      'plugin' => $plugin_id,
    ] + $configuration,
    'process' => [],
    'destination' => [
      'plugin' => 'null',
    ],
  ];
}