You are here

public function MigrateSqlIdMapTest::updateCountDataProvider in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/tests/src/Unit/MigrateSqlIdMapTest.php \Drupal\Tests\migrate\Unit\MigrateSqlIdMapTest::updateCountDataProvider()

Data provider for testUpdateCount().

Scenarios to test for:

  • No updates.
  • One update.
  • Multiple updates.

Return value

array An array of data values.

File

core/modules/migrate/tests/src/Unit/MigrateSqlIdMapTest.php, line 786

Class

MigrateSqlIdMapTest
Tests the SQL ID map plugin.

Namespace

Drupal\Tests\migrate\Unit

Code

public function updateCountDataProvider() {
  return [
    [
      0,
    ],
    [
      1,
    ],
    [
      3,
    ],
  ];
}