public function testD6Categories() { $migrations =
$this->
drupal6Migrations();
$this->
assertArrayHasKey('d6_node:page',
$migrations);
$this->
assertCategories($migrations);
} /**
* Tests that all D7 migrations are tagged as either Configuration or Content.
*/
public function testD7Categories() { $migrations =
$this->
drupal7Migrations();
$this->
assertArrayHasKey('d7_node:page',
$migrations);
$this->
assertCategories($migrations);
} /**
* Asserts that all migrations are tagged as either Configuration or Content.
*
* @param \Drupal\migrate\Plugin\MigrationInterface[] $migrations
* The migrations.
*
* @internal
*/