public function MigrateUiParagraphsTest::testParagraphsMigrate

Tests the result of the paragraphs migration.

@dataProvider providerParagraphsMigrate

File

paragraphs/tests/src/Functional/Migrate/MigrateUiParagraphsTest.php, line 23

Class

MigrateUiParagraphsTest
Tests the migration of paragraph entities.

Namespace

Drupal\Tests\paragraphs\Functional\Migrate

Code

public function testParagraphsMigrate($node_migrate_type_classic) {
  $this
    ->setClassicNodeMigration($node_migrate_type_classic);
  $this
    ->assertMigrateUpgradeViaUi();
  $this
    ->assertParagraphsMigrationResults();
  $this
    ->assertNode8Paragraphs();
  $this
    ->assertNode9Paragraphs();
  $this
    ->assertIcelandicNode9Paragraphs();
}